mcp-server-chart vs dap_mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | dap_mcp by KashunCheng | |
|---|---|---|
| Stars | ★ 4,068 | ★ 40 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Python |
| 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.
dap_mcp · Summary
DAP-MCP enables LLM interaction with debuggers through standardized MCP protocol, offering debugging tools like breakpoints and execution control.
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
dap_mcp · Use cases
- AI-assisted debugging where language models can set breakpoints and control execution flow
- Automated debugging workflows triggered by LLMs based on code analysis
- Remote debugging through LLM interfaces when direct debugger access is limited
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"]
}
}
}dap_mcp · Install
Installation
- Install the dap-mcp package:
``bash pip install dap-mcp ``
- Create a configuration file (e.g.,
config.json) with your debugger settings
- Run the server:
``bash python -m dap_mcp --config config.json # or with uv uvx dap-mcp@latest --config config.json ``
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"dap-debugger": {
"command": "python",
"args": ["-m", "dap_mcp"],
"env": {
"DAP_MCP_CONFIG": "/path/to/config.json"
}
}
}
}