Start a debugging session for a file with real breakpoints and stepping
/plugin marketplace add bherbruck/mcp-debugger/plugin install mcp-debugger@mcp-debugger# Debug Session The MCP debugger tools are ALREADY AVAILABLE. Do NOT search for .mcp.json or config files. Just call the tools directly. I'll help you debug `$ARGUMENTS.file` using the MCP debugger. ## Instructions 1. **Detect Language**: First, determine the programming language from the file extension: - `.py` → Python (uses debugpy) - `.js`, `.ts`, `.mjs`, `.tsx` → JavaScript/TypeScript (uses vscode-js-debug) - `.go` → Go (uses Delve) - `.rs` → Rust (uses CodeLLDB) 2. **Create Session**: Use `create_debug_session` with the detected language 3. **Set Breakpoints**: If a ...