everything vs swarmclaw
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | swarmclaw by swarmclawai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 486 |
| 30天用量 | — | — |
| 综合分 | 77 | 51 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
swarmclaw · 概述
SwarmClaw 是一个支持 MCP 工具的自托管多智能体框架,用于自主智能体群。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
swarmclaw · 使用场景
- 构建和管理具有委派能力的自主代理团队
- 创建跨多个 LLM 提供商的自托管 AI 代理工作流
- 开发具有代理内存和持久性的复杂多代理系统
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-everythingswarmclaw · 安装
安装 SwarmClaw
桌面应用(推荐)
从 [swarmclaw.ai/downloads](https://swarmclaw.ai/downloads) 下载一键安装程序 适用于 macOS、Windows 和 Linux。
全局安装
npm i -g @swarmclawai/swarmclaw
swarmclawDocker
git clone https://github.com/swarmclawai/swarmclaw.git
cd swarmclaw
mkdir -p data
touch .env.local
docker compose up -d --buildClaude Desktop 集成
要将 SwarmClaw 作为 MCP 服务器与 Claude Desktop 一起使用:
- 添加到 Claude Desktop 配置:
{
"mcpServers": {
"swarmclaw": {
"command": "swarmclaw",
"args": ["server"]
}
}
}