New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

debugger-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

debugger-mcp-server

MCP server for VS Code debugging via bridge extension

latest
npmnpm
Version
0.1.9
Version published
Maintainers
1
Created
Source

debugger-mcp-server

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.

Setup

  • Install Agentic Debugger on Cursor or VS Code
  • Add the MCP server to your client configuration:

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.

Available Tools

CategoryToolDescription
BreakpointssetBreakpointsSet breakpoints in a file
BreakpointsremoveBreakpointsRemove breakpoints
BreakpointslistBreakpointsList all active breakpoints
Debug SessionstartDebugSessionLaunch a debug session
Debug SessionstopDebugSessionStop the active debug session
Debug SessionstepOverStep over the current line
Debug SessionstepIntoStep into a function call
Debug SessionstepOutStep out of the current function
Debug SessioncontinueExecutionContinue execution to next breakpoint
Debug SessiongetVariablesInspect variables in current scope
Debug SessiongetCallStackView the call stack
Debug SessionevaluateExpressionEvaluate an expression in the debug context

FAQs

Package last updated on 08 Feb 2026

Did you know?

Socket

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.

Install

Related posts