
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
debugger-mcp-server
Advanced tools
An MCP server that enables AI agents to debug code in VS Code. It exposes debugging tools (breakpoints, stepping, variable inspection) over the Model Context Protocol, bridging to a companion VS Code extension that controls the actual debugger.
Claude Code:
claude mcp add debugger --scope user -- npx debugger-mcp-server
Claude Desktop, Cursor, or other MCP clients:
{
"mcpServers": {
"debugger": {
"command": "npx",
"args": ["debugger-mcp-server"]
}
}
}
The package is available on npm.
| Category | Tool | Description |
|---|---|---|
| Breakpoints | setBreakpoints | Set breakpoints in a file |
| Breakpoints | removeBreakpoints | Remove breakpoints |
| Breakpoints | listBreakpoints | List all active breakpoints |
| Debug Session | startDebugSession | Launch a debug session |
| Debug Session | stopDebugSession | Stop the active debug session |
| Debug Session | stepOver | Step over the current line |
| Debug Session | stepInto | Step into a function call |
| Debug Session | stepOut | Step out of the current function |
| Debug Session | continueExecution | Continue execution to next breakpoint |
| Debug Session | getVariables | Inspect variables in current scope |
| Debug Session | getCallStack | View the call stack |
| Debug Session | evaluateExpression | Evaluate an expression in the debug context |
FAQs
MCP server for VS Code debugging via bridge extension
We found that debugger-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.