project-graph-mcp 1.0.0 → 1.0.1
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 +19 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -79,12 +79,29 @@ Every tool response includes contextual coaching hints:
|
|
|
79
79
|
- **Workspace Isolation** — MCP roots set workspace boundary, tools cannot escape it
|
|
80
80
|
|
|
81
81
|
### 🌐 MCP Ecosystem
|
|
82
|
-
|
|
82
|
+
Best used together with [**agent-pool-mcp**](https://www.npmjs.com/package/agent-pool-mcp) — multi-agent task delegation via Gemini CLI:
|
|
83
83
|
|
|
84
84
|
| Layer | project-graph-mcp | agent-pool-mcp |
|
|
85
85
|
|-------|-------------------|----------------|
|
|
86
86
|
| **Primary IDE agent** | Navigates codebase, runs analysis | Delegates tasks, consults peer |
|
|
87
|
-
| **Gemini CLI workers** | Available as MCP tool inside
|
|
87
|
+
| **Gemini CLI workers** | Available as MCP tool inside workers | Executes delegated tasks |
|
|
88
|
+
|
|
89
|
+
Combined config for both:
|
|
90
|
+
|
|
91
|
+
```json
|
|
92
|
+
{
|
|
93
|
+
"mcpServers": {
|
|
94
|
+
"project-graph": {
|
|
95
|
+
"command": "npx",
|
|
96
|
+
"args": ["-y", "project-graph-mcp"]
|
|
97
|
+
},
|
|
98
|
+
"agent-pool": {
|
|
99
|
+
"command": "npx",
|
|
100
|
+
"args": ["-y", "agent-pool-mcp"]
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
```
|
|
88
105
|
|
|
89
106
|
## Installation
|
|
90
107
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "project-graph-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MCP server for AI agents — AST-based project graph, code quality analysis, and framework-specific lint rules. Zero dependencies.",
|
|
6
6
|
"main": "src/server.js",
|
|
@@ -43,4 +43,4 @@
|
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=18.0.0"
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
}
|