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 uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 11 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-chartFor 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
- Clone the repository:
git clone https://github.com/thomasjerard/ChatSQL.git
cd chatSQL- 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- Run the server in one terminal:
./run_server.sh- Run the client in another terminal:
./run_client.shTo use with Claude Desktop, add to your config.json:
{
"mcpServers": {
"chatsql": {
"command": "python",
"args": ["path/to/chatsql/server.py"]
}
}
}