Skip to content
VS Code

mcp azure for VS Code

io.github.dockndevai/mcp-azure

Azure Resource Manager inventory & ops for AI agents — governed, confirmation-gated.

client:VS Code transport:stdio runtime:npm

Install mcp azure in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "azure-tenant-id",
      "description": "AZURE_TENANT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-client-id",
      "description": "AZURE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-client-secret",
      "description": "AZURE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-subscription-id",
      "description": "AZURE_SUBSCRIPTION_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azure-mode",
      "description": "AZURE_MODE",
      "password": true
    }
  ],
  "servers": {
    "mcp-azure": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dockndevai/mcp-azure"
      ],
      "env": {
        "AZURE_TENANT_ID": "${input:azure-tenant-id}",
        "AZURE_CLIENT_ID": "${input:azure-client-id}",
        "AZURE_CLIENT_SECRET": "${input:azure-client-secret}",
        "AZURE_SUBSCRIPTION_ID": "${input:azure-subscription-id}",
        "AZURE_MODE": "${input:azure-mode}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp azure in other clients