AI Assistant Can’t Find Pointbreak
Symptoms
- AI responds: “I don’t have access to debugging tools”
- AI tries to add console.log instead of setting breakpoints
- No debugger control
Solutions
1. Check Extension is Installed- Go to Extensions in VS Code
- Search for “Pointbreak”
- Verify it’s installed and enabled
- View → Output
- Select “Pointbreak MCP Server” from dropdown
- Look for “Pointbreak MCP server started”
- Close and reopen VS Code/Cursor
- Try again
- Verify MCP configuration points to correct binary path
- Check file permissions
Breakpoints Not Being Set
Symptoms
- AI says it set a breakpoint, but no red dot appears
- Breakpoint appears but isn’t hit during execution
Solutions
1. Verify Debug Adapter is Installed For your language, install the appropriate debug adapter:- Python: Install official Python extension
- JavaScript/TypeScript: Built into VS Code
- Rust/C/C++: Install CodeLLDB extension
- Go: Install Go extension
- Ensure you’re referencing the correct file
- Use absolute paths or workspace-relative paths
- Check file actually exists
- Try setting a breakpoint manually (click in gutter)
- Press F5 to start debugging
- If manual debugging doesn’t work, it’s a configuration issue
- Open
.vscode/launch.json - Verify configuration for your language exists
- Test with VS Code’s debugger first
Debug Session Won’t Start
Symptoms
- AI tries to start debugging but nothing happens
- Error messages about debug adapter
Solutions
1. Check Debug Configuration Exists Create.vscode/launch.json if missing:
Python:
- Press F5
- Select debug configuration
- If this fails, configuration is wrong
- View → Output
- Select your debug adapter from dropdown
- Look for error messages
AI Suggests Adding console.log
Symptoms
- AI wants to modify code with print/console.log statements
- AI doesn’t use breakpoints
Solutions
Be Explicit in Your Request: ❌ “Debug this function” ✅ “Use the debugger to investigate this function. Set breakpoints and step through.” Remind the AI:Extension Errors in Output Panel
”Failed to start MCP server”
Solutions:- Check Pointbreak binary exists (bundled with extension)
- Check file permissions
- Reinstall extension
- Check antivirus isn’t blocking
”WebSocket connection failed”
Solutions:- Check no other process using the port
- Restart VS Code
- Check firewall settings (should allow localhost connections)
“Debug adapter not found”
Solutions:- Install the debug adapter for your language
- Restart VS Code after installation
- Check extension is compatible with VS Code version
Performance Issues
Debugging is Slow
Solutions:- Reduce number of watch expressions
- Use conditional breakpoints to limit pauses
- Close unnecessary editor tabs
- Restart VS Code. Debug adapters can leak memory over time and may have performance issues themselves.
High CPU Usage
Solutions:- Check for runaway debug sessions
- Restart Pointbreak using your AI assistant’s MCP controls
- Check debug adapter logs for issues
Platform-Specific Issues
macOS
“Cannot open application” warning Solution:- Right-click Pointbreak binary
- Select “Open”
- Confirm you want to open it. Note that the binary will be officially signed and notarized.
Linux
Permission denied errors Solution:Windows
Windows Defender blocking Solution:- Add Pointbreak to Windows Defender exclusions
- Path is usually:
%USERPROFILE%\.vscode\extensions\pointbreak.*
Still Having Issues?
Collect Diagnostic Information
-
Extension Version
- Check in Extensions panel
-
VS Code Version
- Help → About
-
Output Panel Logs
- View → Output
- Select “Pointbreak MCP Server”
- Copy all output
-
Debug Adapter Logs
- View → Output
- Select your debug adapter
- Copy relevant errors
Report the Issue
File a bug report: GitHub Issues Include:- Steps to reproduce
- Expected vs actual behavior
- Diagnostic information above
- Screenshots if applicable