From 65980a7bca5afccdb1b993d4351b871fe6df1ffc Mon Sep 17 00:00:00 2001 From: Mathieu Santostefano Date: Wed, 30 Apr 2025 23:55:11 +0200 Subject: [PATCH] fix(mcp): Fix local:mcp:start arg name --- commands/local_mcp_server_start.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/local_mcp_server_start.go b/commands/local_mcp_server_start.go index 4cf18f5e..6b9897b4 100644 --- a/commands/local_mcp_server_start.go +++ b/commands/local_mcp_server_start.go @@ -31,10 +31,10 @@ var localMcpServerStartCmd = &console.Command{ Usage: "Run a local MCP server", Description: localWebServerProdWarningMsg, Args: console.ArgDefinition{ - {Name: "bin", Optional: true, Description: "The path to the Symfony CLI binary"}, + {Name: "projectDir", Optional: true, Description: "The path to the Symfony application"}, }, Action: func(c *console.Context) error { - server, err := mcp.NewServer(c.Args().Get("bin")) + server, err := mcp.NewServer(c.Args().Get("projectDir")) if err != nil { return err }