mcp-server-chart vs mineru-tianshu
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mineru-tianshu by magicyuan876 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 634 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mineru-tianshu · Summary
Enterprise-grade AI preprocessing platform with MCP protocol for document, image, audio, and video processing.
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
mineru-tianshu · Use cases
- Document parsing and conversion to Markdown/JSON
- Multi-modal data preprocessing for RAG applications
- AI assistant integration via MCP protocol
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"]
}
}
}mineru-tianshu · Install
Installation
Docker Deployment (Recommended)
# One-click setup
make setup
# Or use scripts
./scripts/docker-setup.sh # Linux/Mac
scripts\docker-setup.bat # WindowsLocal Development
cd backend
bash install.sh
python start_all.py --enable-mcp # Enable MCP
cd frontend
npm install
npm run devClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mineru-tianshu": {
"url": "http://localhost:8002/sse",
"transport": "sse"
}
}
}