MCP Catalogs
首页

everything vs sub-agents-mcp

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

everything
by modelcontextprotocol
sub-agents-mcp
by shinpr
Stars★ 85,748★ 83
30天用量
综合分7746
官方
分类
开发者工具AI / LLM 工具其它
开发者工具AI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交本月本月

everything · 概述

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

sub-agents-mcp · 概述

在 Markdown 中定义任务特定的 AI 子代理,可用于任何兼容 MCP 的工具。

everything · 使用场景

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

sub-agents-mcp · 使用场景

  • 使用专门的代理进行代码审查和质量分析
  • 通过自定义的测试编写代理为代码模块生成测试
  • 使用专门构建的文档编写代理生成文档

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

sub-agents-mcp · 安装

安装

  1. 安装执行引擎(cursor-agent、claude、gemini 或 codex CLI)
  2. 在您的 IDE 中配置 MCP:

- Cursor: ~/.cursor/mcp.json - Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "sub-agents": {
      "command": "npx",
      "args": ["-y", "sub-agents-mcp"],
      "env": {
        "AGENTS_DIR": "/absolute/path/to/your-agents-folder",
        "AGENT_TYPE": "cursor"  // 或 "claude", "gemini", 或 "codex"
      }
    }
  }
}
  1. 在您的代理文件夹中创建代理 markdown 文件
对比内容由 README + GitHub 公开数据自动生成,定期更新。