mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
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:
parent
053af03caa
commit
af1e455e77
1 changed files with 2 additions and 2 deletions
|
|
@ -2,8 +2,8 @@
|
|||
"mcpServers": {
|
||||
"gitnexus": {
|
||||
"type": "stdio",
|
||||
"command": "cmd",
|
||||
"args": ["/c", "npx", "-y", "gitnexus@latest", "mcp"]
|
||||
"command": "npx",
|
||||
"args": ["-y", "gitnexus@latest", "mcp"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue