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 | — | — |
| Score | 53 | 85 |
| Official | — | — |
| Categories | Developer ToolsSecurityAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | Java | Python |
| Last commit | this month | 2 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!
- Download the release for your Ghidra version from the releases page and install using Ghidra's extension manager.
- Or build from source:
export GHIDRA_INSTALL_DIR=/path/to/ghidra
g radle install- 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/messageVSCode Configuration
{
"mcp": {
"servers": {
"ReVa Assistant": {
"type": "http",
"url": "http://localhost:8080/mcp/message"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server