mcp-server-chart vs aura
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | aura by mezmo | |
|---|---|---|
| Stars | ★ 4,068 | ★ 63 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Rust |
| 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.
aura · Summary
A production-ready AI agent framework with MCP tool integration, RAG pipelines, and OpenAI-compatible API.
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
aura · Use cases
- Building multi-agent AI systems with specialized worker agents
- Creating production-ready chat applications with MCP tool integration
- Implementing RAG pipelines for knowledge-augmented AI assistants
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"]
}
}
}aura · Install
Installation
- Install Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh- Clone and configure:
git clone https://github.com/mezmo/aura
cd aura
cp examples/reference.toml config.toml- Set required environment variables:
export OPENAI_API_KEY="your-api-key"- Build:
cargo build --release- Run the web server:
cargo run --bin aura-web-server