mcp-server-chart vs crash-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | crash-mcp by nikkoxgonzales | |
|---|---|---|
| Stars | ★ 4,068 | ★ 69 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
crash-mcp · Summary
CRASH is an MCP server for structured reasoning with step validation, branching, and confidence tracking.
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
crash-mcp · Use cases
- Complex multi-step problem solving in software development
- System design with multiple architectural considerations
- Debugging requiring systematic investigation
- Code analysis and optimization
- Tasks requiring tracking of confidence levels
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"]
}
}
}crash-mcp · Install
npm install crash-mcpOr use directly with npx:
npx crash-mcpQuick Setup
Most MCP clients use this JSON configuration:
{
"mcpServers": {
"crash": {
"command": "npx",
"args": ["-y", "crash-mcp"]
}
}
}Configuration by Client
| Client | Setup Method | |--------|-------------| | **Claude Code** | claude mcp add crash -- npx -y crash-mcp | | **Cursor** | Add to ~/.cursor/mcp.json | | **VS Code** | Add to settings JSON under mcp.servers | | **Claude Desktop** | Add to claude_desktop_config.json | | **Windsurf** | Add to MCP config file | | **JetBrains** | Settings > Tools > AI Assistant > MCP | | **Others** | Use standard MCP JSON config above |