MCP编排服务器提供了跨MCP启用的LLM实例(如Claude桌面或Cline)的任务管理和协调能力。简单来说,它允许AI代理在实例之间创建、共享和执行任务。
<a href="https://glama.ai/mcp/servers/6hfxiaiuwg"><img width="380" height="200" src="https://gips2.baidu.com/it/u=1027879461,1347447362&fm=3081&app=3081&f=PNG?w=760&h=400" alt="Orchestrator Server MCP服务器" /></a>
要通过Smithery自动安装Claude桌面的编排服务器:
npx -y @smithery/cli install orchestrator-server --client claude
npm install
npm run build
await create_task({
id: 'setup',
description: '初始设置'
});
const task = await get_next_task({
instance_id: 'worker-1'
});
await complete_task({
task_id: 'setup',
instance_id: 'worker-1',
result: '系统初始化完成'
});