mcp-server-chart vs lightdash_mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | lightdash_mcp by poddubnyoleg | |
|---|---|---|
| Stars | ★ 4,068 | ★ 19 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
lightdash_mcp · Summary
MCP server connecting AI assistants to Lightdash analytics platform for data discovery and visualization management.
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
lightdash_mcp · Use cases
- AI assistants analyzing business data by exploring tables and creating visualizations
- Automating dashboard creation and management through natural language instructions
- Generating ad-hoc data queries based on conversational analysis needs
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"]
}
}
}lightdash_mcp · Install
Installation
pip install lightdash-mcpClaude Desktop Configuration
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"lightdash": {
"command": "uvx",
"args": ["lightdash-mcp"],
"env": {
"LIGHTDASH_TOKEN": "ldt_your_token_here",
"LIGHTDASH_URL": "https://app.lightdash.cloud",
"LIGHTDASH_PROJECT_UUID": "your-project-uuid"
}
}
}
}