everything vs ruflo
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | ruflo by ruvnet | |
|---|---|---|
| Stars | ★ 85,748 | ★ 51,795 |
| 30天用量 | — | — |
| 综合分 | 77 | 64 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具知识库 / RAG |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ruflo · 概述
Claude Code的多智能体编排平台,集成了MCP服务器,可实现协调的AI群体和自主工作流。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ruflo · 使用场景
- 协调多个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-everythingruflo · 安装
安装
方案A:Claude Code插件
# 添加市场
/plugin marketplace add ruvnet/ruflo
# 安装核心和插件
/plugin install ruflo-core@ruflo
/plugin install ruflo-swarm@ruflo方案B:完整CLI安装
# 交互式设置
npx ruflo@latest init wizard
# 或快速非交互式安装
npx ruflo@latest initMCP服务器注册
claude mcp add ruflo -- npx ruflo@latest mcp start{
"mcpServers": {
"ruflo": {
"command": "npx",
"args": ["ruflo@latest", "mcp", "start"]
}
}
}