mcp-server-chart vs mcp-windbg
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-windbg by svnscha | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,288 |
| 30d uses | 10,239 | — |
| Score | 84 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSecurity |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-windbg · Summary
MCP server that bridges AI models with WinDbg for Windows crash dump analysis and remote debugging.
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
mcp-windbg · Use cases
- Automated Windows crash dump analysis through natural language queries
- Remote debugging assistance for live Windows applications
- Batch processing of multiple crash dumps to identify patterns
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"]
}
}
}mcp-windbg · Install
Installation
- Install Debugging Tools for Windows or WinDbg from Microsoft Store
- Install Python 3.10 or higher
- Install the MCP server:
pip install mcp-windbgClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp_windbg": {
"command": "python",
"args": ["-m", "mcp_windbg"],
"env": {
"_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols"
}
}
}
}