mcp-server-chart vs Wax
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Wax by christopherkarani | |
|---|---|---|
| Stars | ★ 4,068 | ★ 734 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsDatabase |
| Language | TypeScript | Swift |
| 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.
Wax · Summary
Swift-native memory layer for AI agents providing high-performance RAG on Apple Silicon with zero configuration.
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
Wax · Use cases
- Persistent memory for AI coding assistants like Claude Code and Cursor
- Local RAG implementation for private on-device AI applications
- Session memory management across multiple AI assistant interactions
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"]
}
}
}Wax · Install
Installation
Swift Package Manager
dependencies: [
.package(url: "https://github.com/christopherkarani/Wax.git", from: "0.1.8")
]MCP Server Installation (Claude Code)
npx -y waxmcp@latest mcp install --scope userClaude Desktop Configuration
Add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"wax": {
"command": "wax-mcp",
"args": []
}
}
}