mcp-server-chart vs aminer-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | aminer-mcp by huanghuoguoguo | |
|---|---|---|
| Stars | ★ 4,068 | ★ 6 |
| 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 | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
aminer-mcp · Summary
AMiner MCP server provides free access to academic databases (scholars, papers, patents) via the Model Context Protocol.
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
aminer-mcp · Use cases
- Enable AI research assistants to access academic literature for comprehensive literature reviews
- Automate citation analysis and academic profile building in research workflows
- Support patent research and intellectual property analysis with zero API cost
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"]
}
}
}aminer-mcp · Install
Installation
- Install dependencies:
pip install -e .- Get API token from [AMiner Open Platform](https://www.aminer.cn/open/board?tab=control)
- Set environment variable:
export AMINER_TOKEN="your_token_here"- Run server:
python -m aminer_mcpClaude Desktop Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"aminer": {
"command": "python",
"args": ["-m", "aminer_mcp"],
"env": {
"AMINER_TOKEN": "<YOUR_TOKEN>"
}
}
}
}