-
Notifications
You must be signed in to change notification settings - Fork 1
fix(mcp): use installed server commands #99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,34 +1,29 @@ | ||||||||||||||||
| { | ||||||||||||||||
| "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", | ||||||||||||||||
| "command": "codex", | ||||||||||||||||
| "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": [] | ||||||||||||||||
|
Comment on lines
+25
to
+26
|
||||||||||||||||
| "command": "context7-mcp", | |
| "args": [] | |
| "command": "uvx", | |
| "args": ["context7-mcp"] |
Copilot
AI
Mar 22, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using an explicit empty args array is potentially unnecessary noise and can be less compatible if the consumer expects args to be omitted when empty. If the MCP config loader treats missing/empty identically, consider removing \"args\": [] here for consistency/clarity (or, alternatively, keep empty args arrays consistently for all servers).
| "command": "context7-mcp", | |
| "args": [] | |
| "command": "context7-mcp" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing from
npx/uvxto installed command names makes startup faster, but also shifts responsibility to the environment: these executables must exist onPATH(and be the correct versions) for the config to work. To avoid breakage/repro issues across machines/CI, consider adding a repo-managed installation/pinning mechanism (e.g., a setup script/Make target, a tool version file likemise.toml/.tool-versions, or explicit dev docs in-repo) that ensures these commands are installed at known versions.