mcp-server-chart vs arxiv-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | arxiv-mcp-server by anuj0456 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
arxiv-mcp-server · Summary
MCP server for arXiv enabling AI assistants to search, retrieve, analyze, and export academic papers.
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
arxiv-mcp-server · Use cases
- AI assistants summarizing and explaining recent research papers for non-experts
- Automated literature reviews and trend analysis in specific research fields
- Citation tracking and impact analysis for academic researchers
- Batch processing and organization of research papers for personal libraries
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"]
}
}
}arxiv-mcp-server · Install
# Using Poetry (Recommended)
poetry install
# Using pip
pip install mcp httpxFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"arxiv": {
"command": "python",
"args": ["arxiv_mcp_server.py"]
}
}
}