MCP Catalogs
Home

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 uses10,239
Score8446
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
SecurityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptC++
Last committhis month3 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-chart

For 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

  1. **x64dbg** - [Download latest snapshot](https://github.com/x64dbg/x64dbg/releases)
  2. **Node.js** >= 18 - [Download](https://nodejs.org/)
  3. **MCP plugin** - [Download from releases](https://github.com/bromoket/x64dbg_mcp/releases) (x64dbg_mcp.dp64 and/or x64dbg_mcp.dp32)

Installation

  1. 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
  1. Start x64dbg (you should see '[MCP] x64dbg MCP Server started on 127.0.0.1:27042' in the log)
  2. Configure your MCP client (example for Claude Desktop):
{
  "mcpServers": {
    "x64dbg": {
      "command": "npx",
      "args": ["-y", "x64dbg-mcp-server"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.