Two Installation Paths
Pointbreak supports two types of AI assistants, each requiring different installation steps:Built-in AI agents (GitHub Copilot, Cursor):
- ✅ Just install the extension—MCP server auto-registers
- ✅ No additional configuration needed
- ✅ Works immediately after extension install
- ⚠️ Install the extension AND install CLI separately
- ⚠️ Configure your AI assistant to use the MCP server
- ⚠️ Both steps required for it to work
GitHub Copilot (VS Code Built-in)
Setup
- Install Pointbreak extension in VS Code
- Use GitHub Copilot as normal
Usage
Ask Copilot to debug your code:Claude Code
Setup
Step 1: Install Prerequisites- Install Pointbreak extension in VS Code
- Install Pointbreak CLI:
- Registers Pointbreak as an MCP server in Claude Code
- Uses the
pointbreakbinary from your PATH (installed in Step 1) - Runs
pointbreak mcp serveto start the MCP server - Configures it to communicate via stdio transport
/mcp command to view configured servers. You should see Pointbreak listed.
Usage
Ask Claude to debug your code:Troubleshooting
Claude can’t find Pointbreak MCP server:- Verify the CLI is installed:
pointbreak --version - Check PATH includes binary location:
which pointbreak(macOS/Linux) orwhere.exe pointbreak(Windows) - List configured servers:
claude mcp list - Try removing and re-adding:
claude mcp remove pointbreakthen re-add
- Make sure you completed Step 1 (install script)
- Verify installation:
pointbreak --version - If using custom path, specify it explicitly:
Cursor (Built-in Agent)
Setup
- Install Pointbreak extension in Cursor
- Use Cursor’s AI panel (Cmd+K / Ctrl+K)
Usage
Ask Cursor’s AI to debug:Codex
Codex can use Pointbreak through MCP.Setup
Step 1: Install Prerequisites- Install Pointbreak extension in VS Code
- Install Pointbreak CLI:
/mcp command to view configured servers. You should see Pointbreak listed.
Usage
Ask Codex to use debugging tools through natural language.Windsurf
Windsurf requires manual MCP server installation.Setup
- Install Pointbreak extension in Windsurf
- Install MCP server:
- Configure Windsurf’s MCP settings to point to the installed binary
Other MCP Clients
Any MCP-compatible client can use Pointbreak through the Model Context Protocol.Setup
- Install Pointbreak extension in your IDE
- Install Pointbreak CLI:
- Configure your MCP client to use the Pointbreak binary
- macOS/Linux:
~/.local/bin/pointbreak - Windows:
%LOCALAPPDATA%\Pointbreak\bin\pointbreak.exe
Tips for All AI Assistants
Be Specific
❌ “Debug this” ✅ “Set a breakpoint on line 42 of main.py and start debugging”Set Breakpoints First
❌ “Start debugging and figure out the bug” ✅ “Set a breakpoint at the error, then start debugging”Ask for Context
- “Show me the stack trace”
- “What are the local variables?”
- “Evaluate this expression”
Use Natural Language
You don’t need special syntax—just describe what you want!Troubleshooting
AI Can’t Find Pointbreak
Check:- Extension is installed and enabled
- Output panel shows “Pointbreak MCP server started”
- Restart your editor
AI Uses console.log Instead
Solution: Be explicit:Breakpoints Don’t Work
Check:- Debug adapter is installed for your language
- Debug configuration exists
- Try manual debugging (F5) first