MCP Catalogs
首页

everything vs ChatSQL

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
ChatSQL
by thomasjerard
Stars★ 85,748★ 0
30天用量
综合分7730
官方
分类
开发者工具AI / LLM 工具其它
数据库AI / LLM 工具开发者工具
实现语言TypeScriptPython
最近提交本月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-everything

ChatSQL · 安装

安装步骤

  1. 克隆仓库:
git clone https://github.com/thomasjerard/ChatSQL.git
cd chatSQL
  1. 创建包含您的数据库凭证和 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
  1. 在一个终端中运行服务器:
./run_server.sh
  1. 在另一个终端中运行客户端:
./run_client.sh
对比内容由 README + GitHub 公开数据自动生成,定期更新。