MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

MCP server by Homelycarlos

Created 4/16/2026
Updated about 4 hours ago
Repository documentation and setup instructions

⚡ NexusRE MCP

The Universal AI Bridge for Game Hacking & Reverse Engineering

PyPI version License Discord

FeaturesInstallationSupported Backends

NexusRE is an Enterprise-grade Model Context Protocol (MCP) server that connects your AI assistants (Cursor, Claude, Windsurf) directly to your reverse engineering environments.

Instead of writing isolated scripts for IDA, x64dbg, or Cheat Engine, NexusRE acts as a universal adapter. You can highlight a piece of C++ SDK code in Cursor and say, "Check my live x64dbg session to see what the register value is here," and the AI will do exactly that.


🔥 Killer Features

1. The "Game Updated" Auto-Healer (The Biggest Selling Point)

Every time a game updates, cheats break because memory offsets and AOBs (signatures) change. Usually, a developer has to drop everything, open IDA, and spend hours fixing them.

The Pitch: Tell them NexusRE has an AI-driven auto_recover_signatures engine. When a game patches, the MCP automatically diffs the old signatures, analyzes the cross-references in the new binary, and spits out a fixed offsets.json. What used to take 4 hours now takes 4 minutes.

2. The Universal Bridge

Usually, a developer writes a Python script for IDA, a Lua script for Cheat Engine, and a C++ plugin for x64dbg.

The Pitch: NexusRE lets you connect Cursor or Claude to all of them at once. You can highlight a piece of C++ SDK code in Cursor and say, "Claude, check x64dbg to see what the live register value is here," and the AI will actually reach into the debugger and check for you.

(Insert Video of the AI fixing a broken signature automatically)

🚀 Installation

Install universally via pip:

pip install nexusre-mcp[all]

Quick Start

To attach NexusRE to Cursor or Claude Desktop automatically:

nexusre-mcp --install

To run the secure network-wide SSE server (with rate limiting and API key auth) so your dev team can connect remotely:

set NEXUSRE_API_KEY=your_secret_key
nexusre-mcp --transport sse --port 8080

🔌 Supported Backends

NexusRE is modular. Drop any .py file into the adapters/ folder and it auto-registers.

| Environment | Type | Best For | |---|---|---| | IDA Pro | Static | Decompilation, Struct generation, X-refs | | Ghidra | Static | Headless analysis, Symbol resolution | | x64dbg | Dynamic | Live instruction patching, Register reading | | Cheat Engine | Dynamic | Multi-level pointer chasing, Lua environments | | Frida | Dynamic | JavaScript instruction trapping and hooking | | DMA / PCILeech| Hardware | 100% undetected memory read/writes |

🛠 Usage in Cursor IDE

  1. Open Cursor Settings -> Features -> MCP Servers
  2. Add new server: nexusre
  3. Command: uv run main.py
  4. Open the AI pane and tell Cursor: "Initialize an x64dbg session and scan for this player health AOB."
Built for the modern reverse engineer.
Quick Setup
Installation guide for this server

Install Package (if required)

uvx nexusre-mcp

Cursor configuration (mcp.json)

{ "mcpServers": { "homelycarlos-nexusre-mcp": { "command": "uvx", "args": [ "nexusre-mcp" ] } } }