ASPNET Core Debugging MCP Server
Related Servers
Alternatives to ASPNET Core Debugging MCP Server
No user-submitted related servers found.
Related Servers
- AlicenseBqualityDmaintenanceAn MCP server that enables AI agents to debug .NET applications using netcoredbg. It supports core debugging tasks like setting breakpoints, stepping through code, and inspecting variables or stack traces.1MIT
- AlicenseNot gradedqualityBmaintenanceGive your AI assistant superpowers for .NET development! This MCP server connects GitHub Copilot, Claude, and other AI assistants directly to the .NET SDK, enabling them to create projects, manage packages, run builds, and more—all through natural language.35MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for AI-assisted Python debugging using debugpy and Debug Adapter Protocol, enabling AI agents to run tests, set breakpoints, and inspect variables via natural language.8MIT
- FlicenseAqualityDmaintenanceMinimal MCP server bridging a Roslyn C# language server to AI agents, exposing tools for diagnostics, call hierarchy, and type hierarchy.1-
- AlicenseNot gradedqualityAmaintenanceMCP server that lets AI coding tools control and observe a running Node.js process through the chrome devtools protocol (CDP), via a lightweight Debug Adapter Protocol (DAP) bridge.26 npm2MIT
- AlicenseAqualityDmaintenanceMCP server to expose VS Code editing features to an LLM for AI coding9328 npm393MIT
TDQS
Scored across 27 tools
Each tool has a distinct purpose: breakpoint management, execution control, stack inspection, tracing, and diagnostics are cleanly separated. The breakpoint_* and trace_* families are clearly differentiated by their suffixes (set, remove, list, wait, start, stop, get).
The tool names are largely predictable, with strong prefixes like debug_, breakpoint_, trace_, and stack*. Minor inconsistencies exist, such as 'threads_list' vs 'debug_state' and 'stack_explore' vs 'stacktrace_get', but the overall pattern remains comprehensible.
27 tools is on the upper end of what's reasonable for a debugger domain, covering session control, breakpoints, stepping, inspection, tracing, and diagnostics. Some redundancy exists (e.g., stack_explore bundles stacktrace_get + variables_get; debug_step can also wait like breakpoint_wait), which adds weight without adding much capability.
The domain coverage is strong: launch/attach, pause/continue/step, multiple breakpoint types, stack/variable inspection, expression evaluation, output reading, and diagnostic helpers. The main gap is a detach-without-terminate operation)Skip? Otherwise, no obvious missing capabilities for a debugger MCP server.