Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions internal/cmd/mcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading