Gdb Mcp Server
@yywz1999
关于 Gdb Mcp Server
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"gdb-mcp-server": {
"command": "python3",
"args": [
"-m",
"pip",
"install",
"-r",
"requirements.txt"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Gdb Mcp Server?
Gdb Mcp Server is a GDB Model Context Protocol (MCP) server that enables AI agents and other tools to interact with GDB through the MCP protocol for assisted debugging. It is intended for developers who want to leverage AI in debugging workflows.
How to use Gdb Mcp Server?
Clone the repository, install dependencies with python3 -m pip install -r requirements.txt, then start the server with python3 mcp_server.py. Configure an MCP client (e.g., Cursor) to connect to the server and use the provided tool functions to interact with GDB.
Key features of Gdb Mcp Server
- Discovers and attaches to existing GDB processes automatically
- Communicates with GDB via iTerm2 (macOS) or tmux (Linux)
- Provides a full set of debugging tools: breakpoints, stepping, memory inspection, registers, stack trace, disassembly, local variables
- Supports multi‑architecture, multi‑host, and remote debugging
- Intelligent blocking command detection with auto‑send of interrupt signal
Use cases of Gdb Mcp Server
- AI‑assisted debugging without switching between tools
- Automated remote debugging across different architectures
- Integration with AI editors like Cursor for real‑time debugging help
- Handling long‑running or blocking GDB commands (e.g.,
continue,target remote)
FAQ from Gdb Mcp Server
What are the runtime requirements?
Python 3.11 is recommended. On macOS, iTerm2 is required; on Linux, tmux is used for terminal communication. The pexpect library must be installed.
How does the server find and attach to a GDB process?
The tool sys_find_gdb_processes scans running processes and returns a list of GDB instances. Then sys_attach_to_gdb selects one and establishes communication.
Which GDB commands can be executed through the server?
Any arbitrary GDB command via gdb_execute_command, plus dedicated tools for breakpoints, stepping, continue, registers, memory, stack, locals, disassemble, and remote connection.
Is the server production‑ready?
No. The README states the project is currently under development and welcomes community feedback.
How does the server handle blocking commands?
The server automatically detects high‑risk commands (e.g., continue, target remote) and sends an interrupt signal (Ctrl‑C) if the command blocks, then returns a clear notification.
其他 分类下的更多 MCP 服务器
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
ICSS
chokcoco不止于 CSS
Reactive Resume
amruthpillaiA one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Servers
modelcontextprotocolModel Context Protocol Servers
评论