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.
Files changed (2) hide show
  1. package/README.md +5 -13
  2. 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
- ```json
370
- {
371
- "mcpServers": {
372
- "project-graph": {
373
- "command": "npx",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-graph-mcp",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "type": "module",
5
5
  "description": "MCP server for AI agents — project graph, code quality analysis, visual web explorer. JS, TS, Python, Go.",
6
6
  "main": "src/network/server.js",