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: Aragorn
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.
Latest Blog Posts
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