mcp-server-chart vs annas-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | annas-mcp by iosifache | |
|---|---|---|
| Stars | ★ 4,068 | ★ 863 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SearchFile SystemAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
annas-mcp · Summary
An MCP server and CLI tool for searching and downloading documents from Anna's Archive.
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
annas-mcp · Use cases
- Searching for academic papers by DOI or keywords
- Downloading books by MD5 hash for research purposes
- Accessing public domain and CC-licensed documents through MCP clients
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"]
}
}
}annas-mcp · Install
- Download the appropriate binary from the GitHub Releases section
- Set up environment variables:
- ANNAS_SECRET_KEY: Your Anna's Archive API key - ANNAS_DOWNLOAD_PATH: Download directory path - ANNAS_BASE_URL: Optional mirror URL
- For Claude Desktop, add to config:
"anna-mcp": {
"command": "/path/to/annas-mcp",
"args": ["mcp"],
"env": {
"ANNAS_SECRET_KEY": "your-api-key",
"ANNAS_DOWNLOAD_PATH": "/your/download/path"
}
}