MCP Catalogs
首页

mcp-task-orchestrator vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-task-orchestrator
by EchoingVesper
everything
by modelcontextprotocol
Stars★ 25★ 85,748
30天用量
综合分4177
官方
分类
开发者工具效率工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交9 个月前本月

mcp-task-orchestrator · 概述

一个先进的MCP服务器,为AI辅助开发提供任务编排、专业角色和持久化记忆功能。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

mcp-task-orchestrator · 使用场景

  • 通过结构化开发工作流程构建复杂软件项目
  • 在开发过程中自动化文档生成
  • 使用专业测试AI角色创建全面测试覆盖
  • 在开发会话之间保持持久化上下文
  • 自动化项目工件管理和组织

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

mcp-task-orchestrator · 安装

通用安装(推荐)

# 克隆并运行通用安装程序
git clone https://github.com/EchoingVesper/mcp-task-orchestrator.git
cd mcp-task-orchestrator
python install.py

PyPI安装

pip install mcp-task-orchestrator

Claude Desktop配置

添加到您的claude_desktop_config.json

{
  "mcpServers": {
    "task-orchestrator": {
      "command": "python",
      "args": ["-m", "mcp_task_orchestrator.server"]
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。