Azure MCP Server

Cloudstdio
Repository

The official Azure MCP Server brings Microsoft Azure to AI agents. It lets models query and manage Azure resources through natural language — Storage blobs and tables, Cosmos DB, Azure SQL, Key Vault, Monitor/Log Analytics (KQL), App Configuration, and more — and run Azure CLI commands, enabling cloud automation and infrastructure workflows directly from your tools.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "azure": {
      "command": "npx",
      "args": [
        "-y",
        "@azure/mcp@latest",
        "server",
        "start"
      ],
      "env": {
        "AZURE_SUBSCRIPTION_ID": "<YOUR_AZURE_SUBSCRIPTION_ID>"
      }
    }
  }
}

Tools (2)

azmcp-storage-blob-list

List blobs in an Azure Storage container.

{
  "type": "object",
  "required": [
    "account_name",
    "container_name"
  ],
  "properties": {
    "account_name": {
      "type": "string",
      "description": "Azure Storage account name"
    },
    "container_name": {
      "type": "string",
      "description": "Blob container name"
    }
  }
}

azmcp-monitor-log-query

Run a KQL query against an Azure Monitor / Log Analytics workspace.

{
  "type": "object",
  "required": [
    "workspace_id",
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "KQL query to execute"
    },
    "workspace_id": {
      "type": "string",
      "description": "Log Analytics workspace ID"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Microsoft (@Azure)
Repository
https://github.com/Azure/azure-mcp
License
MIT
Stars
0
Last Updated
June 12, 2026