mcp-server-chart vs x64dbg_mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | x64dbg_mcp by bromoket | |
|---|---|---|
| Stars | ★ 4,068 | ★ 40 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | C++ |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
x64dbg_mcp · Summary
MCP server for x64dbg debugger with 23 mega-tools and 151 endpoints for reverse engineering with AI assistants.
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
x64dbg_mcp · Use cases
- Automating reverse engineering tasks with AI assistance in debugging sessions
- Bypassing anti-debug mechanisms through AI-controlled debugger operations
- Analyzing control flow and identifying patterns in malicious code
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"]
}
}
}x64dbg_mcp · Install
Prerequisites
- **x64dbg** - [Download latest snapshot](https://github.com/x64dbg/x64dbg/releases)
- **Node.js** >= 18 - [Download](https://nodejs.org/)
- **MCP plugin** - [Download from releases](https://github.com/bromoket/x64dbg_mcp/releases) (
x64dbg_mcp.dp64and/orx64dbg_mcp.dp32)
Installation
- Copy the plugin DLLs into your x64dbg plugins directories:
x64dbg/
x64/plugins/x64dbg_mcp.dp64 <-- for 64-bit debugging
x32/plugins/x64dbg_mcp.dp32 <-- for 32-bit debugging- Start x64dbg (you should see '[MCP] x64dbg MCP Server started on 127.0.0.1:27042' in the log)
- Configure your MCP client (example for Claude Desktop):
{
"mcpServers": {
"x64dbg": {
"command": "npx",
"args": ["-y", "x64dbg-mcp-server"]
}
}
}