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 CHANGED
@@ -160,12 +160,29 @@ npx agent-pool-mcp --help # Full help
160
160
 
161
161
  ## MCP Ecosystem
162
162
 
163
- Agent-pool works alongside other MCP servers:
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 | [project-graph-mcp](https://github.com/rnd-pro/project-graph-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 Gemini CLI |
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.0 started');
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.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
+ }
package/src/server.js CHANGED
@@ -105,7 +105,7 @@ export function createServer() {
105
105
  }
106
106
 
107
107
  const server = new Server(
108
- { name: 'agent-pool', version: '1.0.0' },
108
+ { name: 'agent-pool', version: '1.0.1' },
109
109
  { capabilities: { tools: {} } },
110
110
  );
111
111