VSCode Debug MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@VSCode Debug MCPset a breakpoint on line 25 of app.js and start debugging"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
VSCode Debug MCP
A VS Code extension and CLI that expose VS Code's Debug Adapter Protocol (DAP) as MCP tools, so an AI coding agent can set breakpoints, step through code, inspect variables and read exceptions in a real debug session.
Credits
This project is a from-scratch rewrite, started as an analysis of and inspired by mcp-debug-tools by Hwanyong Yoo. No source code was copied verbatim (aside from a few small, functionally trivial utility files); the VS Code integration points (activation, commands, contributes) and CLI/discovery approach were used as a reference while redesigning the DAP tracking, session handling, and server security from the ground up. Licensed GPL-3.0, same as the original.
Why a rewrite
An analysis of the original tool found several issues not worth patching in place:
DAP message tracking was a stub that always returned canned placeholders for
get-dap-log,get-debug-consoleandget-exception-info- never real data.A single shared
McpServerinstance handled every client session, causing a second concurrent connection to hang indefinitely.The HTTP server had no authentication and disabled DNS rebinding protection.
logMessage(logpoints) was accepted but never actually applied.Stopping/restarting the server via command left the on-disk config file pointing at a stale port.
Two
package.jsonfiles were swapped in and out before each build, which is how a required runtime dependency ended up undeclared in every published version.
All of these are fixed here; see CHANGELOG.md for the list.
Development
npm install
npm run build # esbuild -> out/extension.js, out/cli.js
npm run typecheck # tsc --noEmit
npm run lintRun the extension: open this folder in VS Code and press F5 (Extension Development Host).
Run the CLI standalone: node out/cli.js <command> [args] - see resources/skills/dap-cli-debugging.md
for the full command/tool reference.
Packaging & Installation
To create an installable .vsix package for VS Code:
npx @vscode/vsce packageThis will generate a vscode-mcp-dap-debugger-X.Y.Z.vsix file in the repository root. You can install it in VS Code via the UI (Extensions -> ... -> Install from VSIX...) or from the command line:
code --install-extension vscode-mcp-dap-debugger-*.vsixSecurity model
The HTTP server binds to 127.0.0.1 only, keeps DNS rebinding protection enabled, and requires
a per-instance auth token (generated at startup, written to the workspace's
.vscode-mcp-dap-debugger/config.json and to ~/.vscode-mcp-dap-debugger/active-configs.json) on every
request. The CLI discovers the token the same way it discovers the port. This is not meant as
strong auth - it's a guard against another local process or user stumbling onto the port and
driving the debugger (including running arbitrary expressions via evaluate-expression) without
having had filesystem access to this workspace in the first place.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Live browser debugging for AI assistants — DOM, console, network via MCP.
Agent Replay Debugger MCP — record every agent step + deterministic replay. Step-debugger for
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/primax79/vscode-mcp-dap-debugger'
If you have feedback or need assistance with the MCP directory API, please join our Discord server