Merge pull request #1658 from octo-patch/fix/issue-1648-mcp-server-use-bun-command

fix: use bun to run mcp-server.cjs instead of node shebang
This commit is contained in:
Alex Newman
2026-04-14 18:41:17 -07:00
committed by GitHub
+2 -1
View File
@@ -2,7 +2,8 @@
"mcpServers": {
"mcp-search": {
"type": "stdio",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/mcp-server.cjs"
"command": "bun",
"args": ["${CLAUDE_PLUGIN_ROOT}/scripts/mcp-server.cjs"]
}
}
}