mcp-server-chart vs ArXiv-Analyst
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ArXiv-Analyst by devjothish | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 25 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsProductivityDeveloper Tools |
| Language | TypeScript | Python |
| 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.
ArXiv-Analyst · Summary
MCP-powered research assistant that searches and analyzes ArXiv papers with linguistic insights.
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-Analyst · Use cases
- Automating literature review for researchers by searching and summarizing relevant papers
- Extracting linguistic patterns from academic documents for content analysis
- Providing quick insights into research papers without reading full texts
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-Analyst · Install
Installation
- Clone the repository
- Build and run the containerized MCP servers:
```bash docker build -t arxiv-server ./arxiv_server docker run -p 8080:8080 arxiv-server
docker build -t docling-server ./docling_server docker run -p 8081:8081 docling-server ```
- Start the FastAPI client server
- Launch the Streamlit UI application
For Claude Desktop, add to config.json:
{
"mcpServers": {
"arxiv-analyst": {
"command": "python",
"args": ["-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
}
}
}