mcp-server-chart vs airtable-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | airtable-mcp by rashidazarang | |
|---|---|---|
| Stars | ★ 4,068 | ★ 80 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
airtable-mcp · Summary
A comprehensive MCP server for Airtable integration with full CRUD operations, schema management, and AI-powered analytics.
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
airtable-mcp · Use cases
- AI-powered data analysis and reporting from Airtable bases
- Natural language interface for database administration and CRUD operations
- Automated data synchronization between Airtable and other systems via webhooks
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"]
}
}
}airtable-mcp · Install
Installation
**Claude Desktop:** Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": ["-y", "@rashidazarang/airtable-mcp"],
"env": {
"AIRTABLE_TOKEN": "YOUR_AIRTABLE_TOKEN",
"AIRTABLE_BASE_ID": "YOUR_BASE_ID"
}
}
}
}**Claude Code:** One-command install:
curl -fsSL https://raw.githubusercontent.com/rashidazarang/airtable-mcp/main/setup.sh | bash**Manual Config:** Add to ~/.claude.json:
{
"airtable": {
"type": "stdio",
"command": "/bin/bash",
"args": ["-c", "cd /tmp && npx -y @rashidazarang/airtable-mcp"],
"env": {
"AIRTABLE_TOKEN": "YOUR_AIRTABLE_TOKEN"
}
}
}