Skip to content
VS Code

.NET Debugger for MCP for VS Code

io.github.nevse/dotnet-debugger-mcp

Give an AI agent a real .NET debugger: breakpoints, stepping, locals, expression evaluation.

client:VS Code transport:stdio runtime:nuget

Install .NET Debugger for MCP in VS Code

.vscode/mcp.json

{
  "servers": {
    "dotnet-debugger-mcp": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "DotnetDebugger.Mcp",
        "--yes"
      ]
    }
  }
}

Requires agent mode. MCP: Open User Configuration puts the same block in every workspace. VS Code docs

.NET Debugger for MCP in other clients