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