everything vs ChatSQL
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | ChatSQL by thomasjerard | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30天用量 | — | — |
| 综合分 | 77 | 30 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 数据库AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 11 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ChatSQL · 概述
ChatSQL 使用 Gemini 和 FastMCP 协议将自然语言转换为 PostgreSQL 查询。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ChatSQL · 使用场景
- 业务分析师无需 SQL 知识即可查询数据库
- 通过提问而非编写查询进行快速数据探索
- 通过自然语言交互学习 SQL 的教育工具
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-everythingChatSQL · 安装
安装步骤
- 克隆仓库:
git clone https://github.com/thomasjerard/ChatSQL.git
cd chatSQL- 创建包含您的数据库凭证和 Gemini API 密钥的 .env 文件:
DB_NAME=chattosql
DB_USER=postgres
DB_PASS=yourpassword
DB_HOST=localhost
DB_PORT=5432
GEMINI_API_KEY=your-gemini-api-key- 在一个终端中运行服务器:
./run_server.sh- 在另一个终端中运行客户端:
./run_client.sh