fix: use cross-platform npx command in .mcp.json

Replace Windows-specific 'cmd /c npx' invocation with portable 'npx'
command that works on macOS, Linux, and Windows.

Fixes #47

Co-authored-by: Abhigyan Patwari <abhigyanpatwari@users.noreply.github.com>
This commit is contained in:
claude[bot] 2026-02-22 17:46:04 +00:00
parent 053af03caa
commit af1e455e77

View file

@ -2,8 +2,8 @@
"mcpServers": {
"gitnexus": {
"type": "stdio",
"command": "cmd",
"args": ["/c", "npx", "-y", "gitnexus@latest", "mcp"]
"command": "npx",
"args": ["-y", "gitnexus@latest", "mcp"]
}
}
}