db-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
db-mcp-server by FreePeak | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 377 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 52 | 77 |
| 官方 | — | ✓ |
| 分类 | 数据库开发者工具AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
db-mcp-server · 概述
多数据库 MCP 服务器,为 AI 助手提供连接 MySQL、PostgreSQL、SQLite 和 Oracle 的标准化 SQL 接口。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
db-mcp-server · 使用场景
- AI 助手同时查询多个数据库进行数据分析
- 自动化数据库模式探索和文档生成
- 在异构数据库环境中进行性能监控和优化
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
db-mcp-server · 安装
安装
Docker 部署
docker pull freepeak/db-mcp-server:latest
docker run -p 9092:9092 \
-v $(pwd)/config.json:/app/my-config.json \
-e TRANSPORT_MODE=sse \
-e CONFIG_PATH=/app/my-config.json \
freepeak/db-mcp-server源码安装
git clone https://github.com/FreePeak/db-mcp-server.git
cd db-mcp-server
make build
./bin/server -t sse -c config.jsonClaude Desktop 集成
添加到 claude_desktop_config.json:
{
"mcpServers": {
"db-mcp-server": {
"command": "path/to/db-mcp-server/server",
"args": ["-t", "stdio", "-c", "/path/to/config.json"]
}
}
}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