Skip to content

Commit 18cfa11

Browse files
jaykaycodesclaude
andcommitted
fix: use bundled server.js instead of npx for plugin MCP server
npx triggers npm install into a cache dir with deeply nested tree-sitter dependencies, causing ENAMETOOLONG on macOS. Since dist/mcp/server.js is already bundled in the repo, point directly to it. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 165158a commit 18cfa11

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"plugins": [
1212
{
1313
"name": "codebase-analyzer",
14-
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 5 commands, 3 skills for architecture analysis, pattern detection, and dataflow tracing.",
14+
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 1 command, 1 skill for architecture analysis, pattern detection, and dataflow tracing.",
1515
"version": "2.1.0",
1616
"author": {
1717
"name": "Jake Correa",

.claude-plugin/plugin.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@
2020
"mcpServers": {
2121
"codebase-analyzer": {
2222
"type": "stdio",
23-
"command": "npx",
23+
"command": "node",
2424
"args": [
25-
"-y",
26-
"codebase-analyzer-mcp"
25+
"dist/mcp/server.js"
2726
]
2827
}
2928
}

0 commit comments

Comments
 (0)