MCP Catalogs
Home

mcp-server-chart vs ChatSQL

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
ChatSQL
by thomasjerard
Stars★ 4,068★ 0
30d uses10,239
Score8430
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
DatabaseAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month11 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

ChatSQL · Summary

ChatSQL converts natural language questions to PostgreSQL queries using Gemini and FastMCP protocol.

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

ChatSQL · Use cases

  • Business analysts querying databases without SQL knowledge
  • Quick data exploration by asking questions instead of writing queries
  • Educational tool for learning SQL through natural language interaction

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

ChatSQL · Install

Installation

  1. Clone the repository:
git clone https://github.com/thomasjerard/ChatSQL.git
cd chatSQL
  1. Create a .env file with your database credentials and Gemini API key:
DB_NAME=chattosql
DB_USER=postgres
DB_PASS=yourpassword
DB_HOST=localhost
DB_PORT=5432
GEMINI_API_KEY=your-gemini-api-key
  1. Run the server in one terminal:
./run_server.sh
  1. Run the client in another terminal:
./run_client.sh

To use with Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "chatsql": {
      "command": "python",
      "args": ["path/to/chatsql/server.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.