gdb-mcp (gdb and rr MCP server)

gdb-mcp (gdb and rr MCP server)

MCP server that exposes GDB debugging as tools. An AI assistant can set breakpoints, run programs, step through code, inspect variables and memory, and examine registers — all via structured tool calls. Reverse debugging with rr is also supported.

Category
Visit Server

README

gdb-mcp

Experimental — expect rough edges and breaking changes.

MCP server that exposes GDB debugging as tools. An AI assistant can set breakpoints, run programs, step through code, inspect variables and memory, and examine registers — all via structured tool calls.

Reverse debugging with rr is also supported.

Requirements

  • Python 3.12+
  • uv
  • GDB on $PATH
  • rr on $PATH (optional — only needed for rr_record / start_replay_session)

Installation

uv tool install git+https://github.com/schuay/gdb-mcp.git

This installs a gdb-mcp command into an isolated environment and puts a shim on your $PATH. Upgrade later with:

uv tool upgrade gdb-mcp

Install and configure Gemini CLI

curl -fsSL https://raw.githubusercontent.com/schuay/gdb-mcp/main/install-gemini.sh | bash

This installs the tool and adds the server to ~/.gemini/settings.json. Requires jq.

Tools

Session management

Tool Description
start_session Spawn a GDB process, optionally loading a binary
stop_session Kill a session and free its resources
list_sessions Show all active sessions with idle time and kind (gdb / rr-replay)

Time-travel debugging (rr)

rr records a full execution trace and replays it deterministically, enabling reverse-execution (reverse-continue, reverse-step, etc.).

Tool Description
rr_record Record a program execution; returns trace_dir for later replay
start_replay_session Start an rr replay session; accepts trace_dir from rr_record, or omit to replay the latest recording

A replay session works with all standard tools, plus dedicated reverse-execution tools:

Tool Description
reverse-continue Run backwards to the previous breakpoint or watchpoint
reverse-step Step backwards one source line or instruction (enters calls)
reverse-next Step backwards one source line or instruction (skips calls)
reverse-finish Run backwards to where the current function was called

Typical workflow:

rr_record("/path/to/binary", args=["--flag"])
  → { "trace_dir": "/home/user/.local/share/rr/binary-0", ... }

start_replay_session(trace_dir="/home/user/.local/share/rr/binary-0")
  → { "session_id": "a1b2c3d4", ... }

# Now use the session_id with any tool: breakpoint, run, reverse-continue, etc.

Execution control

Execution tools block until the inferior stops (breakpoint, signal, exit, or timeout). While blocked, use interrupt to send SIGINT and unblock.

Tool GDB command Description
run run Start or restart the inferior
continue_exec continue Continue after a stop
step step / stepi Step into next line or instruction
next next / nexti Step over next line or instruction
finish finish Run until current function returns
until until Run until a specific location (skip loops)
interrupt SIGINT Interrupt a running inferior

Breakpoints and watchpoints

Tool GDB command Description
breakpoint break / tbreak Set a breakpoint (supports conditions)
delete_breakpoints delete Delete one or all breakpoints
watch watch / rwatch / awatch Stop when an expression is written, read, or accessed

Threads

Tool GDB command Description
list_threads info threads List all threads with their current location
select_thread thread N Switch to a specific thread

Stack frames

Tool GDB command Description
backtrace backtrace Show the full call stack
select_frame frame N Select a frame by number
up up Move up toward the caller
down down Move down toward the innermost frame

Inspection

Tool GDB command Description
context frame + info args + info locals + list Full snapshot of current location, arguments, locals, and source — call this after every stop
list_variables info locals / info args Variables in the current frame
print print Evaluate and print a GDB expression
examine x Examine memory at an address
info_registers info registers Show CPU register values
list_source list Show source code around the current position
disassemble disassemble Disassemble a function or address range

Generic

Tool Description
exec_command Run any GDB command and return its output
batch_commands Run a list of commands sequentially (fewer round-trips)

exec_command handles execution commands correctly: advance, jump, signal, and return all block until the inferior stops, just like the named tools do.

Notes

GDB plugins such as pwndbg or GEF work if installed, but their custom prompts ((pwndbg), gef>) will break session startup. Either avoid them or force the standard prompt in .gdbinit:

set prompt (gdb)

Timeout behaviour: if an execution command times out, the session is in an indeterminate state. Call interrupt to stop the inferior, wait for the blocked tool call to return, then resume normally. When in doubt, stop_session

  • start_session gives a clean slate.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured