MCP bridge for OllyDbg 1.10 with a named-pipe plugin and Python server for debugger inspection and light control.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"ollydbg-mcp": {
"command": "uvx",
"args": [
"ollydbg-mcp"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add ollydbg-mcp uvx ollydbg-mcp
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"ollydbg-mcp": {
"command": "uvx",
"args": [
"ollydbg-mcp"
]
}
}
}
📋 Copy
Or install with pip: pip install ollydbg-mcp
README Excerpt
An MCP bridge for **OllyDbg 1.10**. It connects an MCP client to a small native OllyDbg plugin over a local Windows named pipe. The repository is source-first. Compiled DLLs, SDK files, caches, samples and machine-specific paths are intentionally excluded. ```text MCP client | | stdio / streamable HTTP / SSE
Tools (20)
Advapi32 olly_clear_all_breakpoints olly_clear_breakpoint olly_clear_hardware_breakpoint olly_continue olly_current_instruction olly_disasm_from_stack olly_get_capabilities olly_get_eip olly_get_registers olly_goto_address olly_goto_eip olly_list_breakpoints olly_list_modules olly_list_threads olly_lookup_address olly_pause olly_read_disasm olly_read_memory olly_read_stack