DEV Community

curatedmcp for CuratedMCP

Posted on • Originally published at curatedmcp.com

Azure MCP: Give Your AI Agent Direct Access to Your Azure Infrastructure

Install guide and config at curatedmcp.com

Azure MCP: Give Your AI Agent Direct Access to Your Azure Infrastructure

Managing Azure resources through the CLI or portal gets tedious. Azure MCP bridges that gap by letting AI agents like Claude and Cursor understand and operate your Azure infrastructure directly. Built by Microsoft, it's the official integration that transforms cloud operations from manual tasks into AI-assisted workflows.

What It Does

Azure MCP gives your AI agent permission-aware access to the full Azure Resource Manager ecosystem. Instead of describing your infrastructure in prompts, your agent can query it directly—inspecting VMs, App Services, storage accounts, databases, and identity resources. It understands your actual topology, policies, and current state.

The server handles both read and write operations. Your agent can review ARM and Bicep templates, check deployment status, inspect container resources and Kubernetes clusters, query Azure SQL and Cosmos DB, manage storage blobs and files, browse Azure AD users and app registrations, and pull monitoring alerts and metrics. This means infrastructure audits, policy reviews, and deployment validation become conversational tasks.

It's built for enterprise teams where cloud operations matter—your agent stays within permission boundaries and can help with compliance checks, deployment reviews, and resource discovery without manual documentation overhead.

How to Install

npx -y @azure/mcp
Enter fullscreen mode Exit fullscreen mode

Add to your Claude Desktop config:

{
  "mcpServers": {
    "azure-mcp": {
      "command": "npx -y @azure/mcp"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Authenticate using your Azure CLI credentials (az login). The agent inherits your permissions.

Real-World Use Cases

  • Deployment Reviews: Ask Claude to audit an ARM template against your organization's naming conventions, resource sizing, and security policies—without leaving your editor.
  • Infrastructure Troubleshooting: Paste an error message and have your agent query actual VM metrics, storage logs, and deployment history to diagnose issues in real time.
  • Compliance Scans: Request a report of all Azure AD app registrations with excessive permissions, or flag storage accounts missing encryption—your agent fetches the live data and summarizes findings.

Full install guides for Claude Desktop, Cursor, Windsurf, and more at CuratedMCP.

Top comments (0)