MCP编排器服务器
](CHANGELOG.md) ](https://smithery.ai/server/orchestrator-server)
MCP Orchestrator Server提供跨启用MCP的LLM实例(如Claude Desktop或Cline)的任务管理和协调功能。更简单地说,它允许AI代理在实例之间创建、共享和执行任务
特性
版本1.1.0
- 任务更新:修改待处理的任务
- 安全删除:删除带有依赖性检查的任务
- 循环检测:防止依赖循环
- 工具列表:全面的工具文档
- 增强状态管理:改进了任务状态转换
核心功能
- 创建具有依赖关系的任务
- 多实例协调
- 持久任务存储
- 依赖关系执行
- 任务状态跟踪
安装
通过Smithery安装
通过以下方式自动安装用于Claude Desktop的Orchestrator Server 史密瑟里:
npx -y @smithery/cli install orchestrator-server --client claude手动安装
npm install
npm run build用法
任务
await create_task({
id: 'setup',
description: 'Initial setup'
});获取下一个任务
const task = await get_next_task({
instance_id: 'worker-1'
});完成任务
await complete_task({
task_id: 'setup',
instance_id: 'worker-1',
result: 'System initialized'
});文档
路线图
版本1.2.0
- 任务优先级
- 超时
- 实例管理
版本1.3.0
- 任务组
- 分析
- 仪表盘
