mcp-server-chart vs kaggle-MCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | kaggle-MCP by Dishant27 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 9 |
| 30d uses | 10,239 | — |
| Score | 84 | 34 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper Toolsdata-science |
| Language | TypeScript | TypeScript |
| Last commit | this month | 14 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
kaggle-MCP · Summary
MCP server enabling AI assistants to interact with Kaggle competitions through commands and API access.
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
kaggle-MCP · Use cases
- Data scientists can quickly download competition datasets without leaving their AI coding environment
- AI assistants can help prepare and submit competition entries through natural language commands
- Researchers can stay updated on Kaggle competitions and track their submission history
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"]
}
}
}kaggle-MCP · Install
Installation
- Install prerequisites:
```bash # Install Kaggle CLI pip install kaggle
# Install Node.js 16+ and TypeScript # (follow instructions for your OS) ```
- Get Kaggle API credentials:
- Go to https://www.kaggle.com/account and click "Create New API Token" - This will download a kaggle.json file - Place it in ~/.kaggle/ directory (Linux/Mac) or %USERPROFILE%\.kaggle\ (Windows)
- Install the MCP server:
``bash git clone https://github.com/Dishant27/kaggle-MCP.git cd kaggle-MCP npm install npm run build ``
- Configure Claude Desktop:
``json { "mcpServers": { "kaggle": { "command": "node", "args": ["/path/to/kaggle-MCP/build/index.js"], "env": { "KAGGLE_USERNAME": "your-kaggle-username", "KAGGLE_KEY": "your-kaggle-api-key" } } } } ``