lldb_mcp
A proper, simple lldb mcp server with minimal dependencies and all functionality! There are only two commands lldb_init and lldb, no need to clutter your tools. Works remarkably well with o4-mini and Gemini 2.5 Pro. You remain fully in control.
The output is automagically captured, no need to copy paste.
Setup
git clone https://github.com/stableversion/lldb_mcp
cd lldb_mcp && python3 -m venv venv && source venv/bin/activate && pip3 install fastmcp
{
"mcpServers": {
"lldb": {
"command": "/path/to/ldb_mcp/venv/bin/python",
"args": ["/path/to/ldb_mcp/lldb_mcp.py"]
}
}
}
(lldb) command script import /path/to/lldb_mcp/lldb_server.py
Architecture
The entire codebase is less than 200 lines of code, because:
- Synchronous LLDB: Calling debugger.SetAsync(False) makes HandleCommand block and capture all output directly. This avoids complex event listeners (SBListener) and polling.
- Simple Controller: The LLDBController just runs commands via HandleCommand and returns the full output/error it receives.
- Standard Libraries: Uses Python's built-in socketserver and json
Safety
lldb can execute ANY arbitrary commands, it should be prevented
- You have to start the server in a lldb session manually
- Some commands are blacklisted, check lldb_server.py
- Chaining of commands is not allowed (o4-mini really likes to)
Notes
- o4 mini has a tendency to hallucinate --address in memory commands.
- Some commands "succeeded" without output, this is confusing for llms, so it returns "Executed successfully" instead.
- "Continue" can run indefinitely until it hits a breakpoint, meaning the mcp can wait forever for output (skip and continue is your friend)
Recommend MCP Servers 💡
mcp-security-audit
A powerful MCP (Model Context Protocol) Server that audits npm package dependencies for security vulnerabilities. Built with remote npm registry integration for real-time security checks.
gibwork-mcp
An MCP server for managing tasks (create, retrieve, search) on the GibWork platform via the Model Context Protocol
mckinsey/vizro
A MCP server that helps create Vizro dashboards and charts with LLMs.
elementor-mcp
A simple MCP server for Wordpress Elementor to perform CRUD operations on Elementor page data
mcp-maven-deps
An MCP server that provides tools for checking Maven dependency versions and retrieving their latest versions from Maven Central Repository.
@hiyorineko/mcp-rollbar-server
A dynamic MCP server implementation for Rollbar API integration, enabling LLMs to interact with Rollbar error tracking data.