From af1e455e7769127a5874472e8c85ef7c6725265c Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Sun, 22 Feb 2026 17:46:04 +0000 Subject: [PATCH] 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 --- .mcp.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.mcp.json b/.mcp.json index 83370ebfb..9b0916bd3 100644 --- a/.mcp.json +++ b/.mcp.json @@ -2,8 +2,8 @@ "mcpServers": { "gitnexus": { "type": "stdio", - "command": "cmd", - "args": ["/c", "npx", "-y", "gitnexus@latest", "mcp"] + "command": "npx", + "args": ["-y", "gitnexus@latest", "mcp"] } } }