mcp-server-chart vs muse-brain
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | muse-brain by falcoschaefer99-eng | |
|---|---|---|
| Stars | ★ 4,068 | ★ 15 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
muse-brain · Summary
Relational memory substrate for AI agents with 33 MCP tools, identity continuity, and self-hosted persistence.
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
muse-brain · Use cases
- Personal AI assistant with memory continuity across sessions
- Creative collaboration between specialized AI agents
- Autonomous task management with identity persistence
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"]
}
}
}muse-brain · Install
Quick Start
**Prerequisites (cloud deploy):** Node.js 18+, Cloudflare account, Neon Postgres database **SQLite local/self-host mode:** Node.js 22+
# Clone and install
git clone https://github.com/falcoschaefer99-eng/muse-brain.git
cd muse-brain/muse-brain
npm install
# Configure your worker
cp wrangler.jsonc.example wrangler.jsonc
# Edit: set your worker name and Hyperdrive ID
# Set secrets
npx wrangler secret put API_KEY # a long random string
npx wrangler secret put DATABASE_URL # your Neon connection string
# Deploy
npm run deploy**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"muse-brain": {
"command": "npx",
"args": ["muse-brain"],
"env": {
"DATABASE_URL": "your-database-url",
"API_KEY": "your-api-key"
}
}
}
}