Skip to content

Commit f83b0ed

Browse files
committed
fix mcp server invocation cmd
1 parent 40422c1 commit f83b0ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/exp_mcp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func (*RootCmd) mcpConfigureClaudeDesktop() *serpent.Command {
8686
return err
8787
}
8888
contents["mcpServers"] = map[string]any{
89-
"coder": map[string]any{"command": binPath, "args": []string{"mcp", "server"}},
89+
"coder": map[string]any{"command": binPath, "args": []string{"exp", "mcp", "server"}},
9090
}
9191
data, err = json.MarshalIndent(contents, "", " ")
9292
if err != nil {
@@ -172,7 +172,7 @@ func (*RootCmd) mcpConfigureCursor() *serpent.Command {
172172
}
173173
mcpServers["coder"] = map[string]any{
174174
"command": binPath,
175-
"args": []string{"mcp", "server"},
175+
"args": []string{"exp", "mcp", "server"},
176176
}
177177
contents["mcpServers"] = mcpServers
178178
data, err := json.MarshalIndent(contents, "", " ")

0 commit comments

Comments
 (0)