lldb-mcp

LLDB-MCP is a tool that integrates the LLDB debugger with Claude's Model Context Protocol (MCP). This integration allows AI to start, control, and interact with LLDB debugging sessions, enabling AI-assisted debugging workflows. It provides a comprehensive set of commands for managing multiple LLDB sessions, controlling program execution, and examining program state.

GitHub Stars

54

User Rating

Not Rated

Favorites

0

Views

28

Forks

5

Issues

2

Installation
Difficulty
Beginner
Estimated Time
5-10 minutes

Installation

Installation

Prerequisites

Required software and versions:
Python: 3.6 or higher
mcp: Latest version

Installation Steps

1. Clone Repository

bash
git clone https://github.com/stass/lldb-mcp.git
cd lldb-mcp

2. Install Dependencies

bash
pip install mcp

3. Configure Claude

Open the Claude desktop app configuration and add the following to your MCP configuration:
json
"mcpServers": {
  "lldb-mcp": {
    "command": "python3",
    "args": ["/path/to/lldb-mcp/lldb_mcp.py"],
    "disabled": false
  }
}

Troubleshooting

Issue: Server won't start Solution: Check Python version and reinstall dependencies.

Additional Resources