@zhixuan92/multi-model-agent-mcp 2.1.0 → 2.1.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 +3 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zhixuan92/multi-model-agent-mcp
|
|
2
2
|
|
|
3
|
-
**MCP server for multi-model-agent.** Your AI assistant gets
|
|
3
|
+
**MCP server for multi-model-agent.** Your AI assistant gets 9 tools for delegating work to cheaper agents — parallel execution, cross-agent review, 90% cost savings.
|
|
4
4
|
|
|
5
5
|
Works with Claude Code, Codex CLI, Cursor, Gemini CLI, and Claude Desktop.
|
|
6
6
|
|
|
@@ -77,7 +77,7 @@ For Codex CLI, Claude Desktop, and Cursor setup, see the [full guide](https://gi
|
|
|
77
77
|
|
|
78
78
|
| Tool | What it does |
|
|
79
79
|
|---|---|
|
|
80
|
-
| `delegate_tasks` | Dispatch tasks in parallel with minimal input: `prompt` plus optional `agentType`, `filePaths`, `done`, and `contextBlockIds`.
|
|
80
|
+
| `delegate_tasks` | Dispatch tasks in parallel with minimal input: `prompt` plus optional `agentType`, `filePaths`, `done`, and `contextBlockIds`. The MCP interprets your request and infers missing details — if confused, it returns a proposed interpretation for confirmation. |
|
|
81
81
|
| `audit_document` | Audit docs/files for issues — parallel per file |
|
|
82
82
|
| `review_code` | Code review with spec + quality pipeline — parallel per file |
|
|
83
83
|
| `verify_work` | Verify work against a checklist — parallel per file |
|
|
@@ -85,6 +85,7 @@ For Codex CLI, Claude Desktop, and Cursor setup, see the [full guide](https://gi
|
|
|
85
85
|
| `register_context_block` | Store reusable context for later tasks |
|
|
86
86
|
| `retry_tasks` | Re-run specific tasks from a previous batch |
|
|
87
87
|
| `get_batch_slice` | Fetch output or telemetry from a previous batch |
|
|
88
|
+
| `confirm_clarifications` | Resume a clarification set by confirming or editing proposed interpretations |
|
|
88
89
|
|
|
89
90
|
## Setup & Configuration
|
|
90
91
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zhixuan92/multi-model-agent-mcp",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "MCP server for multi-model-agent. Exposes a delegate_tasks tool that routes work to Claude, Codex, or OpenAI-compatible sub-agents based on capability, quality tier, and cost.",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
69
|
-
"@zhixuan92/multi-model-agent-core": "^2.1.
|
|
69
|
+
"@zhixuan92/multi-model-agent-core": "^2.1.1",
|
|
70
70
|
"zod": "^4.0.0"
|
|
71
71
|
}
|
|
72
72
|
}
|