mcp-server-chart vs mcp_server_gdb
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp_server_gdb by pansila | |
|---|---|---|
| Stars | ★ 4,068 | ★ 63 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Rust |
| Last commit | this month | 8 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_server_gdb · Summary
MCP server that exposes GDB debugging capabilities to AI assistants through standardized tools.
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_server_gdb · Use cases
- AI-assisted debugging of applications with natural language commands
- Automated regression testing through programmatic control of debugging sessions
- Remote debugging setup with AI providing guidance on complex debugging scenarios
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_server_gdb · Install
Installation
**Pre-built Binaries:** Download from the releases page for your platform.
**Build from Source:**
cargo build --release
cargo run**Using Nix:**
# Run locally
nix run .
# Run from GitHub
nix run "git+https://github.com/pansila/mcp_server_gdb.git" -- --help**Claude Desktop Configuration:** Add to claude_desktop_config.json:
{
"mcpServers": {
"gdb": {
"command": "path/to/mcp-server-gdb",
"args": []
}
}
}