mcp-server-chart vs claudex
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | claudex by kunwar-shah | |
|---|---|---|
| Stars | ★ 4,068 | ★ 88 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSearch |
| 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.
claudex · Summary
Claudex is an MCP server that provides persistent memory and FTS5 search for Claude Code conversation history with a web UI.
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
claudex · Use cases
- Analyze past Claude Code conversations for project insights
- Search and retrieve specific code solutions across sessions
- Maintain context continuity between different Claude Code sessions
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"]
}
}
}claudex · Install
Installation
Option 1: npm (Recommended)
# Global installation
npm install -g @kunwarshah/claudex
# Then run:
claudexAdd MCP Server to Claude Code
claude mcp add --transport stdio claudex -- claudex-mcpOption 2: From Source
git clone https://github.com/kunwar-shah/claudex.git
cd claudex
npm run check:fix
npm run devOpen http://localhost:3000 in your browser.