apisql-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
apisql-mcp by apisql-dev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 33 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 数据库开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
apisql-mcp · 概述
MCP 服务器通过 SQL 操作提供统一的多数据库访问,支持动态切换数据源。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
apisql-mcp · 使用场景
- 跨不同数据库系统的跨数据库查询和分析
- 无需将数据库暴露给公共互联网的安全数据库访问
- 动态数据源切换的实时 SQL 操作
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
apisql-mcp · 安装
安装
- 先决条件:Node.js >= 18.0.0 和 apiSQL 账户(在 [open.apisql.cn](https://open.apisql.cn) 注册)
- 安装 apiSQL 网关以连接您的数据库
- 安装 MCP 服务器:
npm install -g apisql-mcp
# 或直接运行
npx -y apisql-mcp- 在 Claude Desktop 中配置:
{
"mcpServers": {
"apisql-mcp": {
"command": "npx",
"args": ["-y", "apisql-mcp"],
"env": {
"APISQL_MCP_API_URL": "https://open.apisql.cn/api/mytest/$sudb",
"APISQL_MCP_API_KEY": "Bearer sk-your-api-key",
"APISQL_MCP_DS": "mysql"
}
}
}
}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