From a7a6b3c28fd16d177133e22f1c5897d93a954340 Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Sun, 22 Mar 2026 13:05:35 +0900 Subject: [PATCH] fix(mcp): use installed server commands - replace npx/uvx launchers with direct command names - use the xcodebuildmcp mcp subcommand required by the current CLI --- .ruler/mcp.json | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/.ruler/mcp.json b/.ruler/mcp.json index c47e454..4a05cb0 100644 --- a/.ruler/mcp.json +++ b/.ruler/mcp.json @@ -1,21 +1,16 @@ { "mcpServers": { "XcodeBuildMCP": { - "command": "npx", - "args": ["-y", "xcodebuildmcp@latest"] + "command": "xcodebuildmcp", + "args": ["mcp"] }, "Serena": { - "command": "uvx", - "args": [ - "--from", - "git+https://github.com/oraios/serena", - "serena", - "start-mcp-server" - ] + "command": "serena", + "args": ["start-mcp-server"] }, "GitHub": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://api.githubcopilot.com/mcp/"] + "command": "mcp-remote", + "args": ["https://api.githubcopilot.com/mcp/"] }, "Codex": { "type": "stdio", @@ -23,12 +18,12 @@ "args": ["mcp"] }, "ChromeDevtools": { - "command": "npx", - "args": ["chrome-devtools-mcp@latest", "--autoConnect", "--channel=beta"] + "command": "chrome-devtools-mcp", + "args": ["--autoConnect", "--channel=beta"] }, "Context7": { - "command": "npx", - "args": ["-y", "@upstash/context7-mcp@latest"] + "command": "context7-mcp", + "args": [] } } }