project-graph-mcp 2.1.1 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -366,19 +366,11 @@ Best used together with [**agent-pool-mcp**](https://www.npmjs.com/package/agent
|
|
|
366
366
|
| **Primary IDE agent** | Navigates codebase, runs analysis | Delegates tasks, consults peer |
|
|
367
367
|
| **Gemini CLI workers** | Available as MCP tool inside workers | Executes delegated tasks |
|
|
368
368
|
|
|
369
|
-
```
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
"args": ["-y", "project-graph-mcp"]
|
|
375
|
-
},
|
|
376
|
-
"agent-pool": {
|
|
377
|
-
"command": "npx",
|
|
378
|
-
"args": ["-y", "agent-pool-mcp"]
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
}
|
|
369
|
+
```bash
|
|
370
|
+
# Generate configs with correct paths for both servers:
|
|
371
|
+
npx -y project-graph-mcp config
|
|
372
|
+
npx -y agent-pool-mcp config
|
|
373
|
+
# Merge both outputs into your IDE's MCP config file.
|
|
382
374
|
```
|
|
383
375
|
|
|
384
376
|
> [!IMPORTANT]
|
package/package.json
CHANGED