mcp-server-chart vs beever-atlas
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | beever-atlas by Beever-AI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 328 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationKnowledge GraphAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
beever-atlas · Summary
Beever Atlas is an MCP server that transforms team chats into a self-maintaining wiki with integrated search and QA capabilities.
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
beever-atlas · Use cases
- Automatically team documentation from chat conversations
- AI-powered search across team communications with source citations
- Integrate team knowledge base into Claude Code and Cursor via MCP
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"]
}
}
}beever-atlas · Install
Installation
- Clone the repository:
git clone https://github.com/beever-ai/beever-atlas.git
cd beever-atlas- Try the demo (optional):
make demo- Get API keys:
GOOGLE_API_KEYfor Gemini extraction and answersJINA_API_KEYfor embeddings (Jina v4)
- Install with one line:
./atlasThis will walk you through setup including embedding model, LLM provider, graph backend, and MCP server configuration.
Claude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"beever-atlas": {
"command": "npx",
"args": ["beever-atlas-mcp"]
}
}
}