Start a debugging session for the current file or project
Evaluate an expression in the current debug context
Get the variables in the current debug context
Step over the current line of code
Step into the function call at the current line
Step out of the current function
Continue execution until the next breakpoint
Pause execution
Claude Debugs For You is a powerful debugging assistant that enables any LLM (like Claude) to interactively debug your code through VS Code. This MCP server and VS Code extension combination allows AI models to evaluate expressions, inspect variables, and help troubleshoot issues in real-time. The tool is language-agnostic, working with any programming language that supports debugger console functionality in VS Code. It creates a seamless debugging experience where your AI assistant can directly interact with your running code, making debugging sessions more efficient and insightful.
Claude Debugs For You (also known as "Vibe Debugging") creates a bridge between your LLM assistant and VS Code's debugging capabilities. This allows AI models like Claude to interactively debug your code, evaluate expressions, and help you solve problems more efficiently.
Install the VS Code extension from the VS Code Marketplace or download the .vsix
file from the GitHub releases page.
If installing from a .vsix
file:
After installation, you'll see a new status menu item "Claude Debugs For You" in your VS Code status bar, showing whether the service is running properly (check mark) or failed to start (x mark).
To use Claude Debugs For You with your LLM client, you need to configure the MCP server. The setup varies depending on your preferred connection method:
Add the following configuration to your Claude Desktop settings:
{
"mcpServers": {
"claude-debugs-for-you": {
"command": "code",
"args": ["--stdio-mcp"]
}
}
}
launch.json
configuration for debugging your project.The LLM will be able to:
If you encounter issues:
launch.json
configuration is correct for your project.For more detailed help, visit the GitHub repository.