Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides AI agents with real-time access to live Azure infrastructure, including AKS cluster health, resource management, policy validation, and Terraform analysis through a Model Context Protocol interface.

README.md

Azure Platform Engineering MCP Server

A Model Context Protocol (MCP) server connected to real Azure infrastructure. Deploys a live AKS cluster and provides AI agents with real-time access to cluster health, Azure resources, policy validation, and Terraform analysis.

No simulated data. Every API call hits live Azure services.

---

What This Does

This MCP server gives AI agents (Claude Code, GitHub Copilot, etc.) structured access to a real Azure platform:

| Tool | Data Source | What It Returns | |------|-------------|-----------------| | check_cluster_health | Kubernetes API (live AKS) | Real node status, pod health, events, recommendations | | validate_manifest | PyYAML parser | Policy compliance for real YAML manifests | | analyze_terraform | HCL analysis | Quality score for Terraform modules | | query_azure_resources | Azure Resource Manager API | Real resource groups, AKS clusters, VMs |

---

Architecture

!Architecture Overview

How It Works

!MCP Protocol Flow

Deployment Pipeline

!Deployment Pipeline

---

Live Proof

This was deployed and tested against a real AKS cluster on Azure for Students.

kubectl get nodes

!kubectl get nodes

kubectl get pods (with real CrashLoopBackOff)

!kubectl get pods

MCP Server Test Output (LIVE)

!Live test output

Azure Portal

!Azure Portal

---

Infrastructure

Deployed via Terraform in terraform/main.tf:

| Resource | Details | |----------|---------| | Resource Group | mcp-demo-rg (Sweden Central) | | AKS Cluster | aks-platform-demo — Kubernetes 1.32 | | Node Pool | 1x Standard_D2as_v4 (cost-optimised) | | Network | Azure CNI + Calico network policy | | Monitoring | Log Analytics workspace + OMS agent | | Workloads | 3 namespaces: product-api, product-web, platform-monitoring |

The platform-monitoring namespace includes an intentionally failing pod to demonstrate how the health check tool detects and reports real CrashLoopBackOff incidents.

---

Setup

Prerequisites

  • Azure subscription (Azure for Students works)
  • Azure CLI (az)
  • Terraform
  • kubectl
  • Python 3.10+

Deploy

# 1. Clone
git clone https://github.com/sat0ps/mcp-server-azure-platform.git
cd mcp-server-azure-platform

# 2. Login to Azure
az login

# 3. Deploy infrastructure
cd terraform
terraform init
terraform plan
terraform apply

# 4. Configure kubectl
az aks get-credentials --resource-group mcp-demo-rg --name aks-platform-demo

# 5. Deploy sample workloads
kubectl apply -f workloads.yaml

# 6. Install dependencies
cd ..
pip install -r requirements.txt

# 7. Set subscription ID
export AZURE_SUBSCRIPTION_ID=$(az account show --query id -o tsv)

# 8. Test
python test_tools.py

Tear Down (stop costs)

cd terraform
terraform destroy

---

Live Test Output

Platform Engineering MCP Server — Live Test Suite
============================================================
Testing against REAL Azure infrastructure

TEST: Initialize
  Server: azure-platform-engineering-mcp v1.0.0
  PASS

TEST: Check Cluster Health (LIVE)
  Source: LIVE — Kubernetes API
  Health Score: 100 (healthy)
  Nodes: 1/1 ready
  Pods: 25 running, 0 pending, 0 failed
  Problem pods:
    - platform-monitoring/failing-service: 6 restarts (CrashLoopBackOff)
  PASS

TEST: Query Azure Resources (LIVE)
  Source: LIVE — Azure Resource Manager API
  AKS Clusters found: 1
    - aks-platform-demo (swedencentral) — K8s 1.32 — Succeeded
      Pool: system — Standard_D2as_v4 x1
  PASS

ALL TESTS PASSED (Live Azure)

---

Diagrams

| Diagram | What It Shows | |---------|---------------| | Architecture Overview | Full system: agent → MCP → live tools → real Azure | | MCP Protocol Flow | Real request flow with CrashLoopBackOff detection | | Deployment Pipeline | terraform apply → kubectl → test → destroy | | Incident Detection | How MCP found the failing-service pod | | Policy Validation | YAML validation gate with real PyYAML parsing | | Agent Configuration | How agents.md + skills + instructions work together | | Terraform PR Review | AI-driven PR review with quality scoring |

---

Project Structure

├── mcp_server.py              # MCP server (JSON-RPC 2.0 over stdio)
├── tools/
│   ├── kubernetes_live.py     # Real K8s API health checks
│   ├── compliance_live.py     # Real YAML policy validation
│   ├── terraform_live.py      # Terraform HCL analysis
│   ├── azure_resources.py     # Real Azure Resource Manager queries
│   └── azure_metrics.py       # Azure Monitor metrics (SDK v2 WIP)
├── terraform/
│   ├── main.tf                # AKS + monitoring infrastructure
│   └── workloads.yaml         # Sample K8s deployments
├── .claude/
│   ├── agents.md              # Agent behaviour configuration
│   └── mcp.json               # Claude Code MCP config
├── skills/
│   └── SKILL.md               # Repeatable agent procedures
├── instructions/
│   ├── terraform-standards.md # Terraform quality standards
│   └── kubernetes-standards.md# K8s deployment requirements
├── scripts/
│   └── setup.sh               # Automated deployment script
├── diagrams/                  # Architecture diagrams + live screenshots
├── requirements.txt           # Python dependencies
└── test_tools.py              # Live test suite

---

Authentication

Uses DefaultAzureCredential — works with az login, managed identity, and service principals. No credentials stored in the repo.

---

Related

---

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.