IDE-grade Rust debugging for coding agents (Claude Code / Codex) — a skill and an MCP server, built on rust-analyzer + lldb-dap. Zero dependencies.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"rust-debugger-skill": {
"command": "cargo",
"args": [
"run",
"--",
"rust-debugger-skill"
]
}
}
}
Run in terminal:
claude mcp add rust-debugger-skill cargo run -- rust-debugger-skill
Add to .cursor/mcp.json:
{
"mcpServers": {
"rust-debugger-skill": {
"command": "cargo",
"args": [
"run",
"--",
"rust-debugger-skill"
]
}
}
}