MCP Catalogs
Home

reverse-engineering-assistant vs ultimate_mcp_server

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

reverse-engineering-assistant
by cyberkaida
ultimate_mcp_server
by Dicklesworthstone
Stars★ 731★ 149
30d uses
Score5385
Official
Categories
Developer ToolsSecurityAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageJavaPython
Last committhis month2 mo ago

reverse-engineering-assistant · Summary

Ghidra MCP server for AI-powered reverse engineering with specialized tools for binary analysis.

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.

reverse-engineering-assistant · Use cases

  • Automating binary analysis tasks in security research
  • Assisted reverse engineering in malware analysis
  • Generating reports on algorithms and encryption in software

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

reverse-engineering-assistant · Install

Installation

> NOTE: ReVa only supports Ghidra 12.0 and above!

  1. Download the release for your Ghidra version from the releases page and install using Ghidra's extension manager.
  1. Or build from source:
export GHIDRA_INSTALL_DIR=/path/to/ghidra
g radle install
  1. Activate the plugin in two places:

- Project view → File → Configure → Configure all plugins → Check "ReVa Application Plugin" - Code Browser → File → Configure → Configure all plugins → Check "ReVa Plugin" → Save Tool

Claude Code Configuration

claude mcp add --scope user --transport http ReVa -- http://localhost:8080/mcp/message

VSCode Configuration

{
  "mcp": {
    "servers": {
      "ReVa Assistant": {
        "type": "http",
        "url": "http://localhost:8080/mcp/message"
      }
    }
  }
}

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.