mcp-server-chart vs academia_mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | academia_mcp by IlyaGusev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 89 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsProductivityKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
academia_mcp · Summary
Academia MCP server provides tools for searching, fetching, and analyzing scientific papers and research datasets.
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
academia_mcp · Use cases
- Automated literature review and research synthesis
- Academic content creation and summarization
- Scientific dataset discovery and analysis
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"]
}
}
}academia_mcp · Install
Installation
Install via pip:
pip3 install academia-mcpDevelopment setup (using uv + Makefile):
uv venv .venv
make installRunning the Server
HTTP transport:
python -m academia_mcp --transport streamable-httpStdio transport (for Claude Desktop):
python -m academia_mcp --transport stdioClaude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"academia": {
"command": "python3",
"args": [
"-m",
"academia_mcp",
"--transport",
"stdio"
]
}
}
}