mcp-server-chart vs mcp-nodejs-debugger
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-nodejs-debugger by workbackai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 300 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 6 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-nodejs-debugger · Summary
MCP server enabling runtime debugging of Node.js applications for Cursor and Claude Code.
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-nodejs-debugger · Use cases
- Debug Node.js applications running in production or staging environments
- Inspect variables and runtime state without restarting applications
- Set breakpoints to analyze code flow at specific execution points
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-nodejs-debugger · Install
Installation
For Claude Desktop
Add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"nodejs-debugger": {
"command": "npx",
"args": ["@hyperdrive-eng/mcp-nodejs-debugger"]
}
}
}For Claude Code
claude mcp add nodejs-debugger npx @hyperdrive-eng/mcp-nodejs-debuggerFor Cursor
Add to your Cursor MCP configuration (~/.cursor/mcp.json):
{
"mcpServers": {
"nodejs-debugger": {
"command": "npx",
"args": ["@hyperdrive-eng/mcp-nodejs-debugger"]
}
}
}