← Back to browse

ASP.NET Core Debugger — MCP Server for AI Agents

Indexed by io.github.magna-nz

About

MCP server giving AI agents interactive .NET / ASP.NET Core debugging via netcoredbg + DAP.

Use this server

Add it to your MCP client. The catalogue lists this config verbatim from its source — it does not run, download, or vouch for the server. Review the command before you run it.

Transportstdio (runs a local command)
Claude Code
claude mcp add aspnetcore-debugger-mcp -- dnx AspNetCoreDebuggerMcp
Cursor

Add to Cursor

If the button doesn't open Cursor, use the JSON below — Cursor accepts the same mcpServers config.

VS Code
code --add-mcp '{"name":"aspnetcore-debugger-mcp","command":"dnx","args":["AspNetCoreDebuggerMcp"]}'
JSON
{
  "mcpServers": {
    "aspnetcore-debugger-mcp": {
      "command": "dnx",
      "args": [
        "AspNetCoreDebuggerMcp"
      ]
    }
  }
}