MCP Catalogs
首页

roundtable vs everything

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

roundtable
by askbudi
everything
by modelcontextprotocol
Stars★ 107★ 85,748
30天用量
综合分4677
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交7 个月前本月

roundtable · 概述

零配置 MCP 服务器,通过智能自动协调多个 AI 编程助手。

everything · 概述

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

roundtable · 使用场景

  • 通过同时分析来自多个 AI 代理的日志来调试复杂的生产问题
  • 利用不同模型进行 SQL 分析、前端性能分析和代码重构,优化系统性能
  • 使用针对不同编程语言和框架的专门模型进行代码审查和实现

everything · 使用场景

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

roundtable · 安装

安装

使用 pip(标准方式)

pip install roundtable-ai

使用 UV/UVX(推荐,安装更快)

uvx roundtable-ai@latest

Claude Desktop 集成

添加到 ~/.config/claude_desktop_config.json

{
  "mcpServers": {
    "roundtable-ai": {
      "command": "roundtable-ai",
      "env": {
        "CLI_MCP_SUBAGENTS": "codex,claude,cursor,gemini"
      }
    }
  }
}

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 公开数据自动生成,定期更新。