Community MCP server for Microsoft Azure cloud platform. Agents can manage resource groups, create and manage virtual machines, handle Azure Storage (blobs, queues, tables), deploy to App Service, and interact with Azure DevOps for CI/CD. Supports Azure AD authentication. Essential for enterprise agents managing Azure infrastructure and workloads.
npx -y @azure/mcp-server
{
"mcpServers": {
"azure": {
"env": {
"AZURE_CLIENT_ID": "your-client-id",
"AZURE_TENANT_ID": "your-tenant-id",
"AZURE_CLIENT_SECRET": "your-client-secret"
},
"args": [
"-y",
"@azure/mcp-server"
],
"command": "npx"
}
}
}Deploy Azure Web App
{
"type": "object",
"required": [
"app_name",
"resource_group"
],
"properties": {
"app_name": {
"type": "string"
},
"resource_group": {
"type": "string"
}
}
}// Input
{
"app_name": "my-api",
"resource_group": "prod-rg"
}// Output
{
"status": "Deploying"
}Get Azure Monitor metrics
{
"type": "object",
"required": [
"resource_id",
"metric"
],
"properties": {
"metric": {
"type": "string"
},
"timespan": {
"type": "string"
},
"resource_id": {
"type": "string"
}
}
}// Input
{
"metric": "CpuPercentage",
"timespan": "PT1H",
"resource_id": "/subscriptions/.../web-app"
}// Output
{
"data": [
{
"average": 23.5,
"timestamp": "2026-03-26T09:00:00Z"
}
]
}List Azure resources
Community MCP server for Microsoft Azure cloud platform. Agents can manage resource groups, create and manage virtual machines, handle Azure Storage (blobs, queues, tables), deploy to App Service, and interact with Azure DevOps for CI/CD. Supports Azure AD authentication. Essential for enterprise agents managing Azure infrastructure and workloads.
Azure provides 3 tools including deploy_webapp, get_metrics, list_resources.
Azure offers a free tier with 200 calls per month. For higher usage, paid plans start at €0/month.
You can install Azure using the following command: npx -y @azure/mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
{
"type": "object",
"required": [],
"properties": {
"type": {
"type": "string"
},
"resource_group": {
"type": "string"
}
}
}// Input
{
"resource_group": "prod-rg"
}// Output
{
"resources": [
{
"name": "web-app",
"type": "Microsoft.Web/sites",
"status": "Running"
}
]
}Azure is listed under the infrastructure category in the AgentForge MCP registry.
Azure has a current uptime of 99.78% with an average response time of 300ms.
To connect Azure, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Azure's tools via the Model Context Protocol.