MCP.so
登录

MCP Server GDB

@pansila

关于 MCP Server GDB

MCP Server to expose the GDB debugging capabilities

基本信息

分类

其他

许可证

MIT

运行时

rust

传输方式

stdio

发布者

pansila

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is MCP Server GDB?

MCP Server GDB is a server that implements the Model Context Protocol to expose GDB/MI debugging capabilities to AI assistants. It allows remote debugging of applications by creating and managing GDB debug sessions, setting breakpoints, inspecting stack frames and variables, and controlling program execution, with support for concurrent multi-session debugging and a built-in TUI for inspecting agent behaviors.

How to use MCP Server GDB?

Install by downloading a pre-built binary from the release page, building from source with cargo build --release then cargo run, or using Nix (run locally with nix run ., remotely with nix run "git+https://github.com/pansila/mcp_server_gdb.git" -- --help). Run directly with ./mcp-server-gdb. Two transport modes are available: Stdio (default) and SSE at http://127.0.0.1:8080. Configuration can be adjusted by modifying src/config.rs or via environment variables for server IP address, port, and GDB command timeout.

Key features of MCP Server GDB

  • Create and manage GDB debug sessions
  • Set and manage breakpoints
  • View stack information and variables
  • Control program execution (run, pause, step, etc.)
  • Support concurrent multi-session debugging
  • Built-in TUI to inspect agent behaviors

Use cases of MCP Server GDB

  • AI‑assisted remote debugging of applications
  • Debugging multiple programs simultaneously with concurrent sessions
  • Inspecting debugger state via MCP tools from an AI assistant
  • Integrating GDB debugging capabilities into MCP‑aware environments

FAQ from MCP Server GDB

What transport modes are supported?

Stdio (default) and SSE (Server‑Sent Events) at http://127.0.0.1:8080.

How do I configure the server?

Modify src/config.rs or set environment variables for server IP address, server port, and GDB command timeout (in seconds).

What are the system dependencies?

The server communicates using the GDB/MI protocol, so GDB must be installed on the system.

How do I install from source?

Clone the repository and run cargo build --release, then cargo run. Alternatively, use nix run . after cloning or nix run "git+https://github.com/pansila/mcp_server_gdb.git" -- --help remotely.

Is multi-session debugging supported?

Yes, concurrent multi-session debugging is supported, allowing multiple independent debug sessions to run simultaneously.

评论

其他 分类下的更多 MCP 服务器