diff --git a/internal/cmd/mcp.go b/internal/cmd/mcp.go index 660c9393..d9676afc 100644 --- a/internal/cmd/mcp.go +++ b/internal/cmd/mcp.go @@ -21,13 +21,13 @@ var mcpCmd = &cobra.Command{ The MCP server provides tooling and resources for developing and debugging SpiceDB schema and relationships. The server runs an in-memory development instance of SpiceDB and does not connect to a running instance of SpiceDB. -To use with Claude Code, run "zed mcp run" to start the SpiceDB Dev MCP server and then run "claude mcp add --transport http spicedb http://localhost:9999/mcp" to add the server to your Claude Code integrations. +To use with Claude Code, run "zed mcp experimental-run" to start the SpiceDB Dev MCP server and then run "claude mcp add --transport http spicedb http://localhost:9999/mcp" to add the server to your Claude Code integrations. `, } var mcpRunCmd = &cobra.Command{ - Use: "run", - Short: "Run the MCP server", + Use: "experimental-run", + Short: "Run the Experimental MCP server", Args: commands.ValidationWrapper(cobra.ExactArgs(0)), ValidArgsFunction: cobra.NoFileCompletions, RunE: mcpRunCmdFunc,