everything vs turbular
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | turbular by raeudigerRaeffi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 99 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 数据库开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 10 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
turbular · 概述
Turbular 是一个 MCP 服务器,让 LLM 智能体能够通过统一的 API 接口连接和查询多个数据库。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
turbular · 使用场景
- 构建需要查询多种数据库类型的 AI 应用程序
- 使 LLM 智能体能够安全地访问和分析企业数据
- 创建可跨不同数据库系统工作的数据分析工具
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-everythingturbular · 安装
安装
- 克隆仓库:
git clone https://github.com/raeudigerRaeffi/turbular.git
cd turbular- 使用 Docker(推荐):
docker-compose -f docker-compose.dev.yml up --build- 手动安装:
pip install -r requirements.txt
uvicorn app.main:app --reloadClaude Desktop 配置
{
"mcpServers": {
"turbular": {
"command": "uvicorn",
"args": ["app.main:app", "--reload"],
"env": {
"PYTHONPATH": "."
}
}
}
}