Skip to content

ASP.NET Core Debugger — MCP Server for AI Agents for Grok

io.github.magna-nz/aspnetcore-debugger-mcp

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

client:Grok transport:stdio runtime:nuget

Install ASP.NET Core Debugger — MCP Server for AI Agents in Grok

.mcp.json (in your project root)

{
  "mcpServers": {
    "aspnetcore-debugger-mcp": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "AspNetCoreDebuggerMcp",
        "--yes"
      ]
    }
  }
}

Grok Build reads Claude Code's .mcp.json and Claude Desktop's config unchanged, so a server you have already set up there needs nothing new. The Grok web app and X integration do not take custom servers. Grok docs

ASP.NET Core Debugger — MCP Server for AI Agents in other clients