re-dyn-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@re-dyn-mcpset a breakpoint at brcmf_pcie_probe and continue"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@nebuloss/re-dyn-mcp
A dynamic-analysis MCP server for the GT-BE98 / Broadcom BCM6726b0 WiFi-driver
reverse-engineering effort. It drives gdb-multiarch over GDB/MI against the
QEMU dhd harness gdbstub, and manages the harness lifecycle (run / stop / logs).
This is the runtime/dynamic counterpart to the static stack:
Server | Repo | What it does |
| static disassembly, xrefs, signatures | |
| binwalk, source search | |
| this repo | live gdb against the booting harness |
Topology — this is a DIRECT MCP entry, not behind mcpproxy
re-dyn-mcp runs on dev-build (10.0.50.21), because that is where QEMU,
gdb-multiarch, the kernel symbols (vmlinux.harness), and the harness scripts
live. The build never leaves dev-build.
Unlike the static servers (re/utils/files/ghidra), which are aggregated
behind mcpproxy on the RE container, dyn is registered directly in the
client's .mcp.json as:
{ "dyn": "http://10.0.50.21:8781/mcp" }It is not a mcpproxy upstream. Dynamic debugging is stateful and latency-
sensitive (a live gdb session, breakpoints, single-stepping) — fronting it behind
the proxy's retrieve_tools / call_tool indirection added latency and an
approval gate for no benefit. The client talks to it straight over VLAN 50, so it
binds 0.0.0.0 (not loopback).
Related MCP server: gdb-multiarch-mcp
Tools (18)
Harness lifecycle
Tool | Purpose |
| Boot the QEMU |
| Kill the running harness (and any attached gdb session). |
| Tail the harness boot / dhd-probe / IPC trace ( |
gdb session
Tool | GDB/MI | Purpose |
|
| Attach to the harness gdbstub (default |
|
| Breakpoint at symbol, |
|
| Resume; report where it halts. |
|
| Step into (source line). |
|
| Step over (source line). |
|
| Run to caller. |
|
| Single instruction. |
| SIGINT | Halt a running target, report where it stopped. |
|
| Registers in hex. |
|
| Read |
|
| Call stack. |
|
| Evaluate a C/gdb expression in the current frame. |
| (raw) | Escape hatch — run an arbitrary gdb/MI command. |
| — | Whether a gdb session is live; default target/symbols. |
| — | Detach and terminate the gdb process. |
Typical workflow
harness_run # boot the dhd harness, gdbstub :1234 (GDB=1 set internally)
gdb_connect # attach gdb-multiarch, load vmlinux.harness symbols
gdb_break brcmf_pcie_probe # set a breakpoint on the probe path
gdb_continue # run to it
gdb_bt ; gdb_regs ; gdb_mem ... # inspect
gdb_disconnect
harness_stop # tear the harness downConfig (environment)
Var | Default | Meaning |
|
| HTTP listen port. |
|
| Bind address (cross-host: the client is on dev-code). |
| — | Dir holding |
|
| gdbstub address the harness exposes. |
| — | Kernel image with symbols for gdb to load. |
|
| gdb binary. |
|
| Log verbosity. |
The MCP endpoint is POST /mcp; GET /health returns {"status":"ok"}.
Build & run
npm install
npm run build # tsc -> dist/
npm start # node dist/server.jsDeploy (dev-build)
sudo cp systemd/re-dyn-mcp.service /etc/systemd/system/
sudo systemctl daemon-reload && sudo systemctl enable --now re-dyn-mcp
# expects the built server at /opt/re-dyn-mcp/dist/server.jsThe service runs as guillaume (not root) so harness_run behaves like a
manual run and doesn't litter root-owned files in the user tree. MemoryMax=512M.
Prerequisite — harness artifacts
gdb_connect can only attach once the harness actually boots. That needs two
build artifacts present on dev-build:
rootfs/initramfs-dhd.cpio.gz(initrd)vmlinux.harness(kernel image + symbols, path fromHARNESS_VMLINUX)
Rebuild them on dev-build (via rtk) before expecting live attach to work. The
server itself runs fine without them — harness_run will just fail to boot until
they exist.
CI
Typecheck-only (tsc). The runtime drives gdb-multiarch against QEMU, neither
of which exists on GitHub runners — the real exercise happens on dev-build.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceA Model Context Protocol server for conducting Linux binary analysis and guest system forensics within QEMU virtual machines. It enables automated VM lifecycle management, memory dumping, and interactive debugging workflows for analyzing processes and artifacts.Last updated222
- AlicenseBqualityDmaintenanceAn MCP server providing direct access to gdb-multiarch for debugging Nintendo Switch executables on Yuzu or hardware via a GDB stub. It features specialized tools for offset-based breakpoints, instruction patching, and frame-pointer backtraces relative to the game's base address.Last updated333MIT
- AlicenseBqualityCmaintenanceMCP server wrapping GDB and GEF for dynamic analysis, enabling interactive debugging and memory inspection via GDB/MI protocol.Last updated141MIT
- Alicense-qualityBmaintenanceStateful radare2 MCP server tailored for reverse-engineering WiFi firmware, with token-limited outputs and baked-in Thumb-2 disassembly recipes.Last updatedMIT
Related MCP Connectors
MCP server for understanding Javascript internals from ECMAScript specification.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
MCP server for ScanMalware.com URL scanning, malware detection, and analysis.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nebuloss/re-dyn-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server