mcp-server-chart vs lightdash-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | lightdash-mcp-server by syucream | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| 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.
lightdash-mcp-server · Summary
MCP server providing AI assistants with standardized access to Lightdash's analytics platform through API tools.
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-server · Use cases
- AI assistants can explore Lightdash projects and retrieve specific data visualizations based on user queries
- Automated documentation generation for business metrics and dashboards by extracting chart configurations
- Integration with AI systems to create natural language interfaces for business data exploration
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-server · Install
Installation
Via Smithery (Recommended)
npx -y @smithery/cli install lightdash-mcp-server --client claudeManual Installation
npm install lightdash-mcp-serverConfiguration
Set these environment variables:
LIGHTDASH_API_KEY: Your Lightdash Personal Access TokenLIGHTDASH_API_URL: The API base URL
Claude Desktop Configuration
{
"lightdash": {
"command": "npx",
"args": [
"-y",
"lightdash-mcp-server"
],
"env": {
"LIGHTDASH_API_KEY": "<your PAT>",
"LIGHTDASH_API_URL": "https://<your base url>"
}
}
}