aka Vibe Debugging This is an MCP Server and VS Code extension which enables claude to interactively debug and evaluate expressions. That means it should also work with other models / clients etc. but I only demonstrate it with Claude Desktop and Continue here. It's language-agnostic, assuming debugger console support and valid launch.json for debugging in VSCode. 1. Download the extension from re
Add this skill
npx mdskills install jasonjmcghee/claude-debugs-for-youProvides comprehensive MCP server setup with dual transport modes and clear debugging examples
1# <img src="./images/claude-debugs-for-you.png" width="64" height="64" alt="description" align="center"> Claude Debugs For You23[](https://marketplace.visualstudio.com/items?itemName=JasonMcGhee.claude-debugs-for-you)45_aka Vibe Debugging_67### Enable Claude (or any other LLM) to interactively debug your code89This is an [MCP](https://docs.anthropic.com/en/docs/build-with-claude/mcp) Server and VS Code extension which enables claude to interactively debug and evaluate expressions.1011That means it should also work with other models / clients etc. but I only demonstrate it with Claude Desktop and Continue here.1213It's language-agnostic, assuming debugger console support and valid launch.json for debugging in VSCode.1415## Getting Started16171. Download the extension from [releases](https://github.com/jasonjmcghee/claude-debugs-for-you/releases/) or [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=JasonMcGhee.claude-debugs-for-you)182. Install the extension19 - If using `.vsix` directly, go to the three dots in "Extensions" in VS Code and choose "Install from VSIX..."203. You will see a new status menu item "Claude Debugs For You" which shows if it is running properly (check) or failed to startup (x)2122<img width="314" alt="Screenshot 2025-03-22 at 9 51 22 PM" src="https://github.com/user-attachments/assets/2cd65e0d-4c1d-4fb6-b9ea-3995149b4043" />2324You can click this status menu for the commands available2526<img width="510" alt="Screenshot 2025-03-22 at 9 59 22 PM" src="https://github.com/user-attachments/assets/54e339e3-81f8-4ef2-a201-6742aa2c97a8" />2728### Follow one of the options below, depending on your setup2930<details>31 <summary>If using stdio (classic, required for Claude Desktop)</summary>32334. Copy the stdio server path to your clipboard by searching vs code commands for "Copy MCP Debug Server stdio path to clipboard"34355. Paste the following (BUT UPDATE THE PATH TO THE COPIED ONE!) in your `claude_desktop_config.json` or edit accordingly if you use other MCP servers3637```38{39 "mcpServers": {40 "debug": {41 "command": "node",42 "args": [43 "/path/to/mcp-debug.js"44 ]45 }46 }47}48```49506. Start Claude desktop (or other MCP client)51 1. Note: You may need to restart it, if it was already running.52 2. You can skip this step if using Continue/Cursor or other built-in to VS Code53</details>5455<details>56 <summary>If using `/sse` (e.g. Cursor)</summary>57584. Retrieve the MCP server sse address by using the "Copy MCP Debug Server sse address to clipboard" command59 1. You can just write it out server URL of "http://localhost:4711/sse", or whatever port you setup in settings.605. Add it wherever you need to based on your client61 1. You may need to hit "refresh" depending on client: this is required in Cursor626. Start MCP client63 1. Note: You may need to restart it, if it was already running.64 2. You can skip this step if using Continue/Cursor or other built-in to VS Code6566</details>6768### You're ready to debug!6970_[VS Code Debugging Documentation](https://code.visualstudio.com/Docs/editor/debugging)_7172Open a project containing a `.vscode/launch.json` with the first configuration setup to debug a specific file with `${file}`.7374See [Run an Example](#run-an-example) below, and/or watch a demo video.7576## Contributing7778Find bugs or have an idea that will improve this? Please open a pull request or log an issue.7980Does this readme suck? Help me improve it!8182## Demo8384### Using [Continue](https://github.com/continuedev/continue)8586It figures out the problem, and then suggests a fix, which we just click to apply8788https://github.com/user-attachments/assets/3a0a879d-2db7-4a3f-ab43-796c22a0f1ef8990<details>91 <summary>How do I set this up with Continue? / Show MCP Configuration</summary>9293 [Read the docs!](https://docs.continue.dev/customize/tools)9495 Configuration:9697 ```json98 {99 ...100 "experimental": {101 "modelContextProtocolServers": [102 {103 "transport": {104 "type": "stdio",105 "command": "node",106 "args": [107 "/Users/jason/Library/Application Support/Code/User/globalStorage/jasonmcghee.claude-debugs-for-you/mcp-debug.js"108 ]109 }110 }111 ]112 }113 }114 ```115116 You'll also need to choose a model capable of using tools.117118 When the list of tools pops up, make sure to click "debug" in the list of your tools, and set it to be "Automatic".119120 ### Troubleshooting121122 If you are seeing MCP errors in continue, try disabling / re-enabling the continue plugin123124</details>125126If helpful, this is what my configuration looks like! But it's nearly the same as Claude Desktop.127128129### Using Claude Desktop130131In this example, I made it intentionally very cautious (make no assumptions etc - same prompt as below) but you can ask it to do whatever.132133https://github.com/user-attachments/assets/ef6085f7-11a2-4eea-bb60-b5a54873b5d5134135## Developing136137- Clone / Open this repo with VS Code138- Run `npm run install` and `npm run compile`139- Hit "run" which will open a new VSCode140- Otherwise same as "Getting Started applies"141- To rebuild, `npm run compile`142143## Package144145```bash146vsce package147```148149150## Run an Example151152Open `examples/python` in a VS Code window153154Enter the prompt:155156```157i am building `longest_substring_with_k_distinct` and for some reason it's not working quite right. can you debug it step by step using breakpoints and evaluating expressions to figure out where it goes wrong? make sure to use the debug tool to get access and debug! don't make any guesses as to the problem up front. DEBUG!158```159160## Other things worth mentioning161162When you start multiple vs code windows, you'll see a pop-up. You can gracefully hand-off "Claude Debugs For You" between windows.163164You can also disable autostart. Then you'll just need to click the status menu and select "Start Server".165166<img width="395" alt="Screenshot 2025-03-22 at 10 08 52 PM" src="https://github.com/user-attachments/assets/2b6d1b61-a2c6-4447-8054-b4dd02a716e8" />167168169## Short list of ideas170171- [ ] It should use ripgrep to find what you ask for, rather than list files + get file content.172- [x] Add support for conditional breakpoints173- [ ] Add "fix" tool by allowing MCP to insert a CodeLens or "auto fix" suggestion so the user can choose to apply a recommended change or not.174- Your idea here!175
Full transparency — inspect the skill content before installing.