mcp-server-chart vs claude-code-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | claude-code-mcp by KunihiroS | |
|---|---|---|
| Stars | ★ 4,068 | ★ 34 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
claude-code-mcp · Summary
An MCP server that bridges less capable LLMs with Claude Code by exposing code analysis tools via stdio.
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
claude-code-mcp · Use cases
- Integrate Claude Code's analysis capabilities into Claude Desktop
- Enable code review and fixing workflows with less capable LLMs
- Create custom code analysis tools by combining multiple Claude Code features
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"]
}
}
}claude-code-mcp · Install
Installation
**Using npx (Recommended)**
npx @kunihiros/claude-code-mcp**Global Installation**
npm install -g claude-code-mcpConfiguration
Add to your MCP Host settings (e.g., Claude Desktop):
"claude-code-server": {
"command": "npx",
"args": [
"-y",
"@kunihiros/claude-code-mcp"
],
"env": {
"CLAUDE_BIN": "/path/to/your/claude/executable",
"LOG_LEVEL": "info"
},
"disabled": false
}Set the CLAUDE_BIN environment variable to the full path of your Claude CLI executable.