stass/lldb-mcp
LLDB MCP server
Platform-specific configuration:
{
"mcpServers": {
"lldb-mcp": {
"command": "npx",
"args": [
"-y",
"lldb-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
See it in acton here, automatically debugging a buffer overflow: https://x.com/full_duplex/status/1904770477698277847
LLDB-MCP is a tool that integrates the LLDB debugger with Claude's Model Context Protocol (MCP). This integration allows Claude to start, control, and interact with LLDB debugging sessions directly, enabling AI-assisted debugging workflows.
The tool provides a comprehensive set of commands for working with LLDB, including:
git clone https://github.com/stass/lldb-mcp.git
cd lldb-mcp pip install mcp "mcpServers": {
"lldb-mcp": {
"command": "python3",
"args": ["/path/to/lldb-mcp/lldb_mcp.py"],
"disabled": false
}
}Once installed and configured, you can interact with LLDB through Claude using natural language.
Here are some examples of how to interact with LLDB-MCP through Claude:
Loading reviews...