claude-orchestrator
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| dispatch_taskA | 派发任务给 Claude CLI 子代理。sync 模式等待完成返回结果,async 模式后台执行立即返回 task_id。 |
| dispatch_parallelB | 并行派发多个任务给不同的 Claude CLI 子代理。所有任务以 async 模式执行。 |
| get_task_statusB | 查询指定任务的当前状态和最近日志输出。 |
| get_task_resultA | 获取已完成任务的最终结果。如果任务仍在运行,返回当前状态。 |
| list_tasksB | 列出所有由本 MCP Server 管理的任务。 |
| send_instructionA | 向已完成或已停止的任务发送后续指令(resume 会话)。对运行中的任务会先停止再续接。 |
| stop_taskA | 停止运行中的任务。cleanup=true 时同时从注册表和 CLI 中移除。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
每个工具都有明确且独特的职责:派发任务(单/并行)、查询状态、获取结果、列出任务、发送指令、停止任务,没有重叠或模糊之处,代理可以清晰区分。
所有工具名遵循一致的动词_名词模式(如dispatch_task, get_task_status, stop_task),风格统一,可预测性强。
7个工具数量适中,覆盖了任务编排的核心操作,没有冗余或缺失,每个工具都有明确用途。
覆盖了任务生命周期的主要阶段(创建、查询、结果、停止、续接),但缺少显式的删除/清理任务工具(虽然stop_task有cleanup选项),整体完整度较高。