mcp-server-chart vs Audrey
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Audrey by Evilander | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | JavaScript |
| 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.
Audrey · Summary
Persistent memory engine for AI agents with MCP integration and REST 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
Audrey · Use cases
- Preventing AI agents from repeating previous mistakes by storing and recalling failures
- Providing persistent context across sessions for AI development tools
- Acting as a memory layer for custom AI agents with preflight action checking
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"]
}
}
}Audrey · Install
# Install via npm
npm install -g audrey
# Basic setup
npx audrey doctor
# Install for Claude Code
npx audrey install --host claude-code
# Verify installation
claude mcp listFor Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"audrey": {
"command": "npx",
"args": ["audrey", "mcp-config", "generic"]
}
}
}