MCP Catalogs
Home

x64dbg_mcp vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

x64dbg_mcp
by bromoket
ultimate_mcp_server
by Dicklesworthstone
Stars★ 40★ 149
30d uses
Score4685
Official
Categories
SecurityDeveloper ToolsAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageC++Python
Last commit3 mo ago2 mo ago

x64dbg_mcp · Summary

MCP server for x64dbg debugger with 23 mega-tools and 151 endpoints for reverse engineering with AI assistants.

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

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

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

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"]
    }
  }
}

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.