turbo-flow vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
turbo-flow by marcuspat | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 161 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Shell | TypeScript |
| 最近提交 | 本月 | 本月 |
turbo-flow · 概述
包含215+个MCP工具、GitNexus知识图谱和通过Beads实现跨会话记忆的智能代理开发环境。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
turbo-flow · 使用场景
- 使用分层群体协调进行多代理软件开发
- 跨会话项目记忆和上下文保留
- 自动化代码质量分析和性能优化
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
turbo-flow · 安装
安装
DevPod安装
# macOS
brew install loft-sh/devpod/devpod
# Windows
choco install devpod
# Linux
curl -L -o devpod "https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64"
sudo install devpod /usr/local/bin启动
# DevPod(推荐)
devpod up https://github.com/adventurewavelabs/turbo-flow --ide vscode
# 手动安装
git clone https://github.com/adventurewavelabs/turbo-flow -b main
cd turbo-flow
chmod +x devpods/setup.sh
./devpods/setup.sh
source ~/.bashrt
turbo-statusClaude Desktop配置
添加到Claude Desktop配置中:
{
"mcpServers": {
"ruflo": {
"command": "npx",
"args": ["ruflo@latest", "server"]
},
"gitnexus": {
"command": "npx",
"args": ["gitnexus", "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