agent-pool-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 +20 -3
- package/index.js +1 -1
- package/package.json +2 -2
- package/src/server.js +1 -1
package/README.md
CHANGED
|
@@ -160,12 +160,29 @@ npx agent-pool-mcp --help # Full help
|
|
|
160
160
|
|
|
161
161
|
## MCP Ecosystem
|
|
162
162
|
|
|
163
|
-
|
|
163
|
+
Best used together with [**project-graph-mcp**](https://www.npmjs.com/package/project-graph-mcp) — AST-based codebase analysis:
|
|
164
164
|
|
|
165
|
-
| Layer | agent-pool-mcp |
|
|
165
|
+
| Layer | agent-pool-mcp | project-graph-mcp |
|
|
166
166
|
|-------|---------------|-------------------|
|
|
167
167
|
| **Primary IDE agent** | Delegates tasks, consults peer | Navigates codebase, runs analysis |
|
|
168
|
-
| **Gemini CLI workers** | Executes delegated tasks | Available as MCP tool inside
|
|
168
|
+
| **Gemini CLI workers** | Executes delegated tasks | Available as MCP tool inside workers |
|
|
169
|
+
|
|
170
|
+
Combined config for both:
|
|
171
|
+
|
|
172
|
+
```json
|
|
173
|
+
{
|
|
174
|
+
"mcpServers": {
|
|
175
|
+
"agent-pool": {
|
|
176
|
+
"command": "npx",
|
|
177
|
+
"args": ["-y", "agent-pool-mcp"]
|
|
178
|
+
},
|
|
179
|
+
"project-graph": {
|
|
180
|
+
"command": "npx",
|
|
181
|
+
"args": ["-y", "project-graph-mcp"]
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
```
|
|
169
186
|
|
|
170
187
|
## Security
|
|
171
188
|
|
package/index.js
CHANGED
|
@@ -33,6 +33,6 @@ async function startServer() {
|
|
|
33
33
|
const server = createServer();
|
|
34
34
|
const transport = new StdioServerTransport();
|
|
35
35
|
await server.connect(transport);
|
|
36
|
-
console.error('[agent-pool] MCP server v1.0.
|
|
36
|
+
console.error('[agent-pool] MCP server v1.0.1 started');
|
|
37
37
|
}
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-pool-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MCP Server for multi-agent task delegation and orchestration via Gemini CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -41,4 +41,4 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@modelcontextprotocol/sdk": "^1.12.0"
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|