azure-mcp-inspector
Deploy MCP Inspector to Azure Container Apps using an nginx same-origin proxy so UI and proxy work behind a single ingress port.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy MCP Inspector to Azure Container Apps using an nginx same-origin proxy so UI and proxy work behind a single ingress port.
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.
Add MCP Inspector to a .NET Aspire AppHost for debugging MCP servers such as Data API Builder.
| name | azure-mcp-inspector |
| description | Deploy MCP Inspector to Azure Container Apps using an nginx same-origin proxy so UI and proxy work behind a single ingress port. |
Azure Container Apps exposes one ingress port. MCP Inspector uses UI + proxy ports, so deploy with nginx same-origin routing.
:6277 proxy connectivity issues80 only./config, /mcp, /stdio, /sse, /message, /health → Inspector proxy/ → Inspector UIMCP_SERVER_URL to DAB /mcp endpoint.Environment variables:
HOST=0.0.0.0MCP_AUTO_OPEN_ENABLED=falseDANGEROUSLY_OMIT_AUTH=trueMCP_SERVER_URL=https://<dab-fqdn>/mcp:6277/config can prefill transport and server URLexternal: true, targetPort: 80minReplicas: 0, maxReplicas: 1) for admin tooling/mcp and /config.MCP_SERVER_URL missing or entrypoint not passing args.location /mcp {
proxy_pass http://127.0.0.1:6277;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_buffering off;
}
HOST=0.0.0.0
MCP_AUTO_OPEN_ENABLED=false
DANGEROUSLY_OMIT_AUTH=true
MCP_SERVER_URL=https://<dab-fqdn>/mcp
streamable-httpaspire-mcp-inspectorazure-data-api-builder