aspire-mcp-inspector
Add MCP Inspector to a .NET Aspire AppHost for debugging MCP servers such as Data API Builder.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add MCP Inspector to a .NET Aspire AppHost for debugging MCP servers such as Data API Builder.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add SQL Commander to a .NET Aspire AppHost for browsing and querying SQL Server. Use when asked to add a SQL query tool, browse database tables, or configure SQL Commander in Aspire.
Deploy Data API Builder to Azure Container Apps with Azure SQL, ACR, and azd. Use when asked to deploy DAB to Azure, create Bicep for DAB, or set up cloud API hosting.
Build and maintain DAB quickstart demos with consistent structure, naming, deployment scripts, and validation checks.
Guide for .NET Aspire orchestration of SQL Server + Data API Builder + SQL Commander + MCP Inspector. Use when asked to create an Aspire-based DAB environment.
Docker Compose orchestration of SQL Server, Data API Builder, SQL Commander, and MCP Inspector. Use when asked to create docker-compose.yml, set up local containers, or run DAB without Aspire.
Deploy MCP Inspector to Azure Container Apps using an nginx same-origin proxy so UI and proxy work behind a single ingress port.
| name | aspire-mcp-inspector |
| description | Add MCP Inspector to a .NET Aspire AppHost for debugging MCP servers such as Data API Builder. |
Use this skill to run MCP Inspector as an Aspire-managed resource next to your MCP server.
var mcpInspector = builder
.AddMcpInspector("mcp-inspector", options =>
{
options.InspectorVersion = "0.20.0";
})
.WithMcpServer(dabServer, transportType: McpTransportType.StreamableHttp)
.WithParentRelationship(dabServer)
.WithEnvironment("DANGEROUSLY_OMIT_AUTH", "true")
.WaitFor(dabServer);
StreamableHttp for DAB.DANGEROUSLY_OMIT_AUTH=true to avoid auth-token friction.Sse vs StreamableHttp) or MCP server not healthy.DANGEROUSLY_OMIT_AUTH=true.WithMcpServer(...) targets the right resource.// WRONG for DAB
.WithMcpServer(dabServer, transportType: McpTransportType.Sse)
// CORRECT for DAB
.WithMcpServer(dabServer, transportType: McpTransportType.StreamableHttp)
// CORRECT: Inspector waits for running MCP server resource
.WaitFor(dabServer)
npx available on hostazure-mcp-inspectoraspire-data-api-builder