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