[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-azure-resource-lookup":3,"mdc--e943kf-key":37,"related-repo-microsoft-azure-resource-lookup":1216,"related-org-microsoft-azure-resource-lookup":1345},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":32,"sourceUrl":35,"mdContent":36},"azure-resource-lookup","find and list Azure resources","List, find, and show Azure resources across subscriptions or resource groups. Handles prompts like \"list the websites in my subscription\", \"list my web apps\", \"show my app services\", \"list virtual machines\", \"list my VMs\", \"show storage accounts\", \"find container apps\", and \"what resources do I have\". USE FOR: list websites, list web apps, list app services, show websites in subscription, resource inventory, find resources by tag, tag analysis, orphaned resource discovery (not for cost analysis), unattached disks, count resources by type, cross-subscription lookup, and Azure Resource Graph queries. DO NOT USE FOR: deploying\u002Fchanging resources (use azure-deploy), cost optimization (use azure-cost), or non-Azure clouds.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Operations","operations","tag",{"name":17,"slug":18,"type":15},"Azure","azure",{"name":20,"slug":21,"type":15},"Search","search",{"name":23,"slug":24,"type":15},"Cloud","cloud",1324,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fazure-skills","2026-07-31T05:56:26.051228","MIT",220,[31],"agent-skills",{"repoUrl":26,"stars":25,"forks":29,"topics":33,"description":34},[31],"Official agent plugin providing skills and MCP server configurations for Azure scenarios.","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fazure-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fazure-resource-lookup","---\nname: azure-resource-lookup\ndescription: \"List, find, and show Azure resources across subscriptions or resource groups. Handles prompts like \\\"list the websites in my subscription\\\", \\\"list my web apps\\\", \\\"show my app services\\\", \\\"list virtual machines\\\", \\\"list my VMs\\\", \\\"show storage accounts\\\", \\\"find container apps\\\", and \\\"what resources do I have\\\". USE FOR: list websites, list web apps, list app services, show websites in subscription, resource inventory, find resources by tag, tag analysis, orphaned resource discovery (not for cost analysis), unattached disks, count resources by type, cross-subscription lookup, and Azure Resource Graph queries. DO NOT USE FOR: deploying\u002Fchanging resources (use azure-deploy), cost optimization (use azure-cost), or non-Azure clouds.\"\nlicense: MIT\nmetadata:\n  author: Microsoft\n  version: \"1.2.1\"\n---\n\n# Azure Resource Lookup\n\nList, find, and discover Azure resources of any type across subscriptions and resource groups. Use Azure Resource Graph (ARG) for fast, cross-cutting queries when dedicated MCP tools don't cover the resource type.\n\n## When to Use This Skill\n\nUse this skill when the user wants to:\n- **List resources** of any type (VMs, web apps, storage accounts, container apps, databases, etc.)\n- **Show resources** in a specific subscription or resource group\n- Query resources **across multiple subscriptions** or resource types\n- Find **orphaned resources** (unattached disks, unused NICs, idle IPs)\n- Discover resources **missing required tags** or configurations\n- Get a **resource inventory** spanning multiple types\n- Find resources in a **specific state** (unhealthy, failed provisioning, stopped)\n- Answer \"**what resources do I have?**\" or \"**show me my Azure resources**\"\n- **List web apps, websites, or App Services**\n\n> ⚠️ **Warning:** App Service \u002F Web Apps have no dedicated MCP `list` command. Prompts like \"list websites\", \"list web apps\", or \"list app services\" **must** route through this skill to use Azure Resource Graph.\n\n> 💡 **Tip:** For single-resource-type queries, first check if a dedicated MCP tool can handle it (see routing table below). If none exists, use Azure Resource Graph.\n\n## Quick Reference\n\n| Property | Value |\n|----------|-------|\n| **Query Language** | KQL (Kusto Query Language subset) |\n| **CLI Command** | `az graph query -q \"\u003CKQL>\" -o table` |\n| **Extension** | `az extension add --name resource-graph` |\n| **MCP Tool** | `extension_cli_generate` with intent for `az graph query` |\n| **Best For** | Cross-subscription queries, orphaned resources, tag audits |\n\n## MCP Tools\n\n| Tool | Purpose | When to Use |\n|------|---------|-------------|\n| `extension_cli_generate` | Generate `az graph query` commands | Primary tool — generate ARG queries from user intent |\n| `mcp_azure_mcp_subscription_list` | List available subscriptions | Discover subscription scope before querying |\n| `mcp_azure_mcp_group_list` | List resource groups | Narrow query scope |\n\n## Workflow\n\n### Step 1: Check for a Dedicated MCP Tool\n\nFor single-resource-type queries, check if a dedicated MCP tool can handle it:\n\n| Resource Type | MCP Tool | Coverage |\n|---|---|---|\n| Virtual Machines | `compute` | ✅ Full — list, details, sizes |\n| Storage Accounts | `storage` | ✅ Full — accounts, blobs, tables |\n| Cosmos DB | `cosmos` | ✅ Full — accounts, databases, queries |\n| Key Vault | `keyvault` | ⚠️ Partial — secrets\u002Fkeys only, no vault listing |\n| SQL Databases | `sql` | ⚠️ Partial — requires resource group name |\n| Container Registries | `acr` | ✅ Full — list registries |\n| Kubernetes (AKS) | `aks` | ✅ Full — clusters, node pools |\n| App Service \u002F Web Apps | `appservice` | ❌ No list command — use ARG |\n| Container Apps | — | ❌ No MCP tool — use ARG |\n| Event Hubs | `eventhubs` | ✅ Full — namespaces, hubs |\n| Service Bus | `servicebus` | ✅ Full — queues, topics |\n\nIf a dedicated tool is available with full coverage, use it. Otherwise proceed to Step 2.\n\n### Step 2: Generate the ARG Query\n\nUse `extension_cli_generate` to build the `az graph query` command:\n\n```yaml\nmcp_azure_mcp_extension_cli_generate\n  intent: \"query Azure Resource Graph to \u003Cuser's request>\"\n  cli-type: \"az\"\n```\n\nSee [Azure Resource Graph Query Patterns](references\u002Fazure-resource-graph.md) for common KQL patterns.\n\n### Step 3: Execute and Format Results\n\nRun the generated command. Use `--query` (JMESPath) to shape output:\n\n```bash\naz graph query -q \"\u003CKQL>\" --query \"data[].{name:name, type:type, rg:resourceGroup}\" -o table\n```\n\nUse `--first N` to limit results. Use `--subscriptions` to scope.\n\n## Error Handling\n\n| Error | Cause | Fix |\n|-------|-------|-----|\n| `resource-graph extension not found` | Extension not installed | `az extension add --name resource-graph` |\n| `AuthorizationFailed` | No read access to subscription | Check RBAC — need Reader role |\n| `BadRequest` on query | Invalid KQL syntax | Verify table\u002Fcolumn names; use `=~` for case-insensitive type matching |\n| Empty results | No matching resources or wrong scope | Check `--subscriptions` flag; verify resource type spelling |\n\n## Constraints\n\n- ✅ **Always** use `=~` for case-insensitive type matching (types are lowercase)\n- ✅ **Always** scope queries with `--subscriptions` or `--first` for large tenants\n- ✅ **Prefer** dedicated MCP tools for single-resource-type queries\n- ❌ **Never** use ARG for real-time monitoring (data has slight delay)\n- ❌ **Never** attempt mutations through ARG (read-only)\n",{"data":38,"body":41},{"name":4,"description":6,"license":28,"metadata":39},{"author":9,"version":40},"1.2.1",{"type":42,"children":43},"root",[44,52,58,65,70,183,215,230,236,364,370,469,475,482,487,751,756,762,781,861,875,881,894,967,987,993,1124,1130,1210],{"type":45,"tag":46,"props":47,"children":48},"element","h1",{"id":4},[49],{"type":50,"value":51},"text","Azure Resource Lookup",{"type":45,"tag":53,"props":54,"children":55},"p",{},[56],{"type":50,"value":57},"List, find, and discover Azure resources of any type across subscriptions and resource groups. Use Azure Resource Graph (ARG) for fast, cross-cutting queries when dedicated MCP tools don't cover the resource type.",{"type":45,"tag":59,"props":60,"children":62},"h2",{"id":61},"when-to-use-this-skill",[63],{"type":50,"value":64},"When to Use This Skill",{"type":45,"tag":53,"props":66,"children":67},{},[68],{"type":50,"value":69},"Use this skill when the user wants to:",{"type":45,"tag":71,"props":72,"children":73},"ul",{},[74,86,96,108,120,132,144,156,175],{"type":45,"tag":75,"props":76,"children":77},"li",{},[78,84],{"type":45,"tag":79,"props":80,"children":81},"strong",{},[82],{"type":50,"value":83},"List resources",{"type":50,"value":85}," of any type (VMs, web apps, storage accounts, container apps, databases, etc.)",{"type":45,"tag":75,"props":87,"children":88},{},[89,94],{"type":45,"tag":79,"props":90,"children":91},{},[92],{"type":50,"value":93},"Show resources",{"type":50,"value":95}," in a specific subscription or resource group",{"type":45,"tag":75,"props":97,"children":98},{},[99,101,106],{"type":50,"value":100},"Query resources ",{"type":45,"tag":79,"props":102,"children":103},{},[104],{"type":50,"value":105},"across multiple subscriptions",{"type":50,"value":107}," or resource types",{"type":45,"tag":75,"props":109,"children":110},{},[111,113,118],{"type":50,"value":112},"Find ",{"type":45,"tag":79,"props":114,"children":115},{},[116],{"type":50,"value":117},"orphaned resources",{"type":50,"value":119}," (unattached disks, unused NICs, idle IPs)",{"type":45,"tag":75,"props":121,"children":122},{},[123,125,130],{"type":50,"value":124},"Discover resources ",{"type":45,"tag":79,"props":126,"children":127},{},[128],{"type":50,"value":129},"missing required tags",{"type":50,"value":131}," or configurations",{"type":45,"tag":75,"props":133,"children":134},{},[135,137,142],{"type":50,"value":136},"Get a ",{"type":45,"tag":79,"props":138,"children":139},{},[140],{"type":50,"value":141},"resource inventory",{"type":50,"value":143}," spanning multiple types",{"type":45,"tag":75,"props":145,"children":146},{},[147,149,154],{"type":50,"value":148},"Find resources in a ",{"type":45,"tag":79,"props":150,"children":151},{},[152],{"type":50,"value":153},"specific state",{"type":50,"value":155}," (unhealthy, failed provisioning, stopped)",{"type":45,"tag":75,"props":157,"children":158},{},[159,161,166,168,173],{"type":50,"value":160},"Answer \"",{"type":45,"tag":79,"props":162,"children":163},{},[164],{"type":50,"value":165},"what resources do I have?",{"type":50,"value":167},"\" or \"",{"type":45,"tag":79,"props":169,"children":170},{},[171],{"type":50,"value":172},"show me my Azure resources",{"type":50,"value":174},"\"",{"type":45,"tag":75,"props":176,"children":177},{},[178],{"type":45,"tag":79,"props":179,"children":180},{},[181],{"type":50,"value":182},"List web apps, websites, or App Services",{"type":45,"tag":184,"props":185,"children":186},"blockquote",{},[187],{"type":45,"tag":53,"props":188,"children":189},{},[190,192,197,199,206,208,213],{"type":50,"value":191},"⚠️ ",{"type":45,"tag":79,"props":193,"children":194},{},[195],{"type":50,"value":196},"Warning:",{"type":50,"value":198}," App Service \u002F Web Apps have no dedicated MCP ",{"type":45,"tag":200,"props":201,"children":203},"code",{"className":202},[],[204],{"type":50,"value":205},"list",{"type":50,"value":207}," command. Prompts like \"list websites\", \"list web apps\", or \"list app services\" ",{"type":45,"tag":79,"props":209,"children":210},{},[211],{"type":50,"value":212},"must",{"type":50,"value":214}," route through this skill to use Azure Resource Graph.",{"type":45,"tag":184,"props":216,"children":217},{},[218],{"type":45,"tag":53,"props":219,"children":220},{},[221,223,228],{"type":50,"value":222},"💡 ",{"type":45,"tag":79,"props":224,"children":225},{},[226],{"type":50,"value":227},"Tip:",{"type":50,"value":229}," For single-resource-type queries, first check if a dedicated MCP tool can handle it (see routing table below). If none exists, use Azure Resource Graph.",{"type":45,"tag":59,"props":231,"children":233},{"id":232},"quick-reference",[234],{"type":50,"value":235},"Quick Reference",{"type":45,"tag":237,"props":238,"children":239},"table",{},[240,259],{"type":45,"tag":241,"props":242,"children":243},"thead",{},[244],{"type":45,"tag":245,"props":246,"children":247},"tr",{},[248,254],{"type":45,"tag":249,"props":250,"children":251},"th",{},[252],{"type":50,"value":253},"Property",{"type":45,"tag":249,"props":255,"children":256},{},[257],{"type":50,"value":258},"Value",{"type":45,"tag":260,"props":261,"children":262},"tbody",{},[263,280,300,320,348],{"type":45,"tag":245,"props":264,"children":265},{},[266,275],{"type":45,"tag":267,"props":268,"children":269},"td",{},[270],{"type":45,"tag":79,"props":271,"children":272},{},[273],{"type":50,"value":274},"Query Language",{"type":45,"tag":267,"props":276,"children":277},{},[278],{"type":50,"value":279},"KQL (Kusto Query Language subset)",{"type":45,"tag":245,"props":281,"children":282},{},[283,291],{"type":45,"tag":267,"props":284,"children":285},{},[286],{"type":45,"tag":79,"props":287,"children":288},{},[289],{"type":50,"value":290},"CLI Command",{"type":45,"tag":267,"props":292,"children":293},{},[294],{"type":45,"tag":200,"props":295,"children":297},{"className":296},[],[298],{"type":50,"value":299},"az graph query -q \"\u003CKQL>\" -o table",{"type":45,"tag":245,"props":301,"children":302},{},[303,311],{"type":45,"tag":267,"props":304,"children":305},{},[306],{"type":45,"tag":79,"props":307,"children":308},{},[309],{"type":50,"value":310},"Extension",{"type":45,"tag":267,"props":312,"children":313},{},[314],{"type":45,"tag":200,"props":315,"children":317},{"className":316},[],[318],{"type":50,"value":319},"az extension add --name resource-graph",{"type":45,"tag":245,"props":321,"children":322},{},[323,331],{"type":45,"tag":267,"props":324,"children":325},{},[326],{"type":45,"tag":79,"props":327,"children":328},{},[329],{"type":50,"value":330},"MCP Tool",{"type":45,"tag":267,"props":332,"children":333},{},[334,340,342],{"type":45,"tag":200,"props":335,"children":337},{"className":336},[],[338],{"type":50,"value":339},"extension_cli_generate",{"type":50,"value":341}," with intent for ",{"type":45,"tag":200,"props":343,"children":345},{"className":344},[],[346],{"type":50,"value":347},"az graph query",{"type":45,"tag":245,"props":349,"children":350},{},[351,359],{"type":45,"tag":267,"props":352,"children":353},{},[354],{"type":45,"tag":79,"props":355,"children":356},{},[357],{"type":50,"value":358},"Best For",{"type":45,"tag":267,"props":360,"children":361},{},[362],{"type":50,"value":363},"Cross-subscription queries, orphaned resources, tag audits",{"type":45,"tag":59,"props":365,"children":367},{"id":366},"mcp-tools",[368],{"type":50,"value":369},"MCP Tools",{"type":45,"tag":237,"props":371,"children":372},{},[373,394],{"type":45,"tag":241,"props":374,"children":375},{},[376],{"type":45,"tag":245,"props":377,"children":378},{},[379,384,389],{"type":45,"tag":249,"props":380,"children":381},{},[382],{"type":50,"value":383},"Tool",{"type":45,"tag":249,"props":385,"children":386},{},[387],{"type":50,"value":388},"Purpose",{"type":45,"tag":249,"props":390,"children":391},{},[392],{"type":50,"value":393},"When to Use",{"type":45,"tag":260,"props":395,"children":396},{},[397,425,447],{"type":45,"tag":245,"props":398,"children":399},{},[400,408,420],{"type":45,"tag":267,"props":401,"children":402},{},[403],{"type":45,"tag":200,"props":404,"children":406},{"className":405},[],[407],{"type":50,"value":339},{"type":45,"tag":267,"props":409,"children":410},{},[411,413,418],{"type":50,"value":412},"Generate ",{"type":45,"tag":200,"props":414,"children":416},{"className":415},[],[417],{"type":50,"value":347},{"type":50,"value":419}," commands",{"type":45,"tag":267,"props":421,"children":422},{},[423],{"type":50,"value":424},"Primary tool — generate ARG queries from user intent",{"type":45,"tag":245,"props":426,"children":427},{},[428,437,442],{"type":45,"tag":267,"props":429,"children":430},{},[431],{"type":45,"tag":200,"props":432,"children":434},{"className":433},[],[435],{"type":50,"value":436},"mcp_azure_mcp_subscription_list",{"type":45,"tag":267,"props":438,"children":439},{},[440],{"type":50,"value":441},"List available subscriptions",{"type":45,"tag":267,"props":443,"children":444},{},[445],{"type":50,"value":446},"Discover subscription scope before querying",{"type":45,"tag":245,"props":448,"children":449},{},[450,459,464],{"type":45,"tag":267,"props":451,"children":452},{},[453],{"type":45,"tag":200,"props":454,"children":456},{"className":455},[],[457],{"type":50,"value":458},"mcp_azure_mcp_group_list",{"type":45,"tag":267,"props":460,"children":461},{},[462],{"type":50,"value":463},"List resource groups",{"type":45,"tag":267,"props":465,"children":466},{},[467],{"type":50,"value":468},"Narrow query scope",{"type":45,"tag":59,"props":470,"children":472},{"id":471},"workflow",[473],{"type":50,"value":474},"Workflow",{"type":45,"tag":476,"props":477,"children":479},"h3",{"id":478},"step-1-check-for-a-dedicated-mcp-tool",[480],{"type":50,"value":481},"Step 1: Check for a Dedicated MCP Tool",{"type":45,"tag":53,"props":483,"children":484},{},[485],{"type":50,"value":486},"For single-resource-type queries, check if a dedicated MCP tool can handle it:",{"type":45,"tag":237,"props":488,"children":489},{},[490,510],{"type":45,"tag":241,"props":491,"children":492},{},[493],{"type":45,"tag":245,"props":494,"children":495},{},[496,501,505],{"type":45,"tag":249,"props":497,"children":498},{},[499],{"type":50,"value":500},"Resource Type",{"type":45,"tag":249,"props":502,"children":503},{},[504],{"type":50,"value":330},{"type":45,"tag":249,"props":506,"children":507},{},[508],{"type":50,"value":509},"Coverage",{"type":45,"tag":260,"props":511,"children":512},{},[513,535,557,579,601,623,645,667,689,707,729],{"type":45,"tag":245,"props":514,"children":515},{},[516,521,530],{"type":45,"tag":267,"props":517,"children":518},{},[519],{"type":50,"value":520},"Virtual Machines",{"type":45,"tag":267,"props":522,"children":523},{},[524],{"type":45,"tag":200,"props":525,"children":527},{"className":526},[],[528],{"type":50,"value":529},"compute",{"type":45,"tag":267,"props":531,"children":532},{},[533],{"type":50,"value":534},"✅ Full — list, details, sizes",{"type":45,"tag":245,"props":536,"children":537},{},[538,543,552],{"type":45,"tag":267,"props":539,"children":540},{},[541],{"type":50,"value":542},"Storage Accounts",{"type":45,"tag":267,"props":544,"children":545},{},[546],{"type":45,"tag":200,"props":547,"children":549},{"className":548},[],[550],{"type":50,"value":551},"storage",{"type":45,"tag":267,"props":553,"children":554},{},[555],{"type":50,"value":556},"✅ Full — accounts, blobs, tables",{"type":45,"tag":245,"props":558,"children":559},{},[560,565,574],{"type":45,"tag":267,"props":561,"children":562},{},[563],{"type":50,"value":564},"Cosmos DB",{"type":45,"tag":267,"props":566,"children":567},{},[568],{"type":45,"tag":200,"props":569,"children":571},{"className":570},[],[572],{"type":50,"value":573},"cosmos",{"type":45,"tag":267,"props":575,"children":576},{},[577],{"type":50,"value":578},"✅ Full — accounts, databases, queries",{"type":45,"tag":245,"props":580,"children":581},{},[582,587,596],{"type":45,"tag":267,"props":583,"children":584},{},[585],{"type":50,"value":586},"Key Vault",{"type":45,"tag":267,"props":588,"children":589},{},[590],{"type":45,"tag":200,"props":591,"children":593},{"className":592},[],[594],{"type":50,"value":595},"keyvault",{"type":45,"tag":267,"props":597,"children":598},{},[599],{"type":50,"value":600},"⚠️ Partial — secrets\u002Fkeys only, no vault listing",{"type":45,"tag":245,"props":602,"children":603},{},[604,609,618],{"type":45,"tag":267,"props":605,"children":606},{},[607],{"type":50,"value":608},"SQL Databases",{"type":45,"tag":267,"props":610,"children":611},{},[612],{"type":45,"tag":200,"props":613,"children":615},{"className":614},[],[616],{"type":50,"value":617},"sql",{"type":45,"tag":267,"props":619,"children":620},{},[621],{"type":50,"value":622},"⚠️ Partial — requires resource group name",{"type":45,"tag":245,"props":624,"children":625},{},[626,631,640],{"type":45,"tag":267,"props":627,"children":628},{},[629],{"type":50,"value":630},"Container Registries",{"type":45,"tag":267,"props":632,"children":633},{},[634],{"type":45,"tag":200,"props":635,"children":637},{"className":636},[],[638],{"type":50,"value":639},"acr",{"type":45,"tag":267,"props":641,"children":642},{},[643],{"type":50,"value":644},"✅ Full — list registries",{"type":45,"tag":245,"props":646,"children":647},{},[648,653,662],{"type":45,"tag":267,"props":649,"children":650},{},[651],{"type":50,"value":652},"Kubernetes (AKS)",{"type":45,"tag":267,"props":654,"children":655},{},[656],{"type":45,"tag":200,"props":657,"children":659},{"className":658},[],[660],{"type":50,"value":661},"aks",{"type":45,"tag":267,"props":663,"children":664},{},[665],{"type":50,"value":666},"✅ Full — clusters, node pools",{"type":45,"tag":245,"props":668,"children":669},{},[670,675,684],{"type":45,"tag":267,"props":671,"children":672},{},[673],{"type":50,"value":674},"App Service \u002F Web Apps",{"type":45,"tag":267,"props":676,"children":677},{},[678],{"type":45,"tag":200,"props":679,"children":681},{"className":680},[],[682],{"type":50,"value":683},"appservice",{"type":45,"tag":267,"props":685,"children":686},{},[687],{"type":50,"value":688},"❌ No list command — use ARG",{"type":45,"tag":245,"props":690,"children":691},{},[692,697,702],{"type":45,"tag":267,"props":693,"children":694},{},[695],{"type":50,"value":696},"Container Apps",{"type":45,"tag":267,"props":698,"children":699},{},[700],{"type":50,"value":701},"—",{"type":45,"tag":267,"props":703,"children":704},{},[705],{"type":50,"value":706},"❌ No MCP tool — use ARG",{"type":45,"tag":245,"props":708,"children":709},{},[710,715,724],{"type":45,"tag":267,"props":711,"children":712},{},[713],{"type":50,"value":714},"Event Hubs",{"type":45,"tag":267,"props":716,"children":717},{},[718],{"type":45,"tag":200,"props":719,"children":721},{"className":720},[],[722],{"type":50,"value":723},"eventhubs",{"type":45,"tag":267,"props":725,"children":726},{},[727],{"type":50,"value":728},"✅ Full — namespaces, hubs",{"type":45,"tag":245,"props":730,"children":731},{},[732,737,746],{"type":45,"tag":267,"props":733,"children":734},{},[735],{"type":50,"value":736},"Service Bus",{"type":45,"tag":267,"props":738,"children":739},{},[740],{"type":45,"tag":200,"props":741,"children":743},{"className":742},[],[744],{"type":50,"value":745},"servicebus",{"type":45,"tag":267,"props":747,"children":748},{},[749],{"type":50,"value":750},"✅ Full — queues, topics",{"type":45,"tag":53,"props":752,"children":753},{},[754],{"type":50,"value":755},"If a dedicated tool is available with full coverage, use it. Otherwise proceed to Step 2.",{"type":45,"tag":476,"props":757,"children":759},{"id":758},"step-2-generate-the-arg-query",[760],{"type":50,"value":761},"Step 2: Generate the ARG Query",{"type":45,"tag":53,"props":763,"children":764},{},[765,767,772,774,779],{"type":50,"value":766},"Use ",{"type":45,"tag":200,"props":768,"children":770},{"className":769},[],[771],{"type":50,"value":339},{"type":50,"value":773}," to build the ",{"type":45,"tag":200,"props":775,"children":777},{"className":776},[],[778],{"type":50,"value":347},{"type":50,"value":780}," command:",{"type":45,"tag":782,"props":783,"children":788},"pre",{"className":784,"code":785,"language":786,"meta":787,"style":787},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","mcp_azure_mcp_extension_cli_generate\n  intent: \"query Azure Resource Graph to \u003Cuser's request>\"\n  cli-type: \"az\"\n","yaml","",[789],{"type":45,"tag":200,"props":790,"children":791},{"__ignoreMap":787},[792,804,835],{"type":45,"tag":793,"props":794,"children":797},"span",{"class":795,"line":796},"line",1,[798],{"type":45,"tag":793,"props":799,"children":801},{"style":800},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[802],{"type":50,"value":803},"mcp_azure_mcp_extension_cli_generate\n",{"type":45,"tag":793,"props":805,"children":807},{"class":795,"line":806},2,[808,814,820,825,830],{"type":45,"tag":793,"props":809,"children":811},{"style":810},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[812],{"type":50,"value":813},"  intent",{"type":45,"tag":793,"props":815,"children":817},{"style":816},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[818],{"type":50,"value":819},":",{"type":45,"tag":793,"props":821,"children":822},{"style":816},[823],{"type":50,"value":824}," \"",{"type":45,"tag":793,"props":826,"children":827},{"style":800},[828],{"type":50,"value":829},"query Azure Resource Graph to \u003Cuser's request>",{"type":45,"tag":793,"props":831,"children":832},{"style":816},[833],{"type":50,"value":834},"\"\n",{"type":45,"tag":793,"props":836,"children":838},{"class":795,"line":837},3,[839,844,848,852,857],{"type":45,"tag":793,"props":840,"children":841},{"style":810},[842],{"type":50,"value":843},"  cli-type",{"type":45,"tag":793,"props":845,"children":846},{"style":816},[847],{"type":50,"value":819},{"type":45,"tag":793,"props":849,"children":850},{"style":816},[851],{"type":50,"value":824},{"type":45,"tag":793,"props":853,"children":854},{"style":800},[855],{"type":50,"value":856},"az",{"type":45,"tag":793,"props":858,"children":859},{"style":816},[860],{"type":50,"value":834},{"type":45,"tag":53,"props":862,"children":863},{},[864,866,873],{"type":50,"value":865},"See ",{"type":45,"tag":867,"props":868,"children":870},"a",{"href":869},"references\u002Fazure-resource-graph.md",[871],{"type":50,"value":872},"Azure Resource Graph Query Patterns",{"type":50,"value":874}," for common KQL patterns.",{"type":45,"tag":476,"props":876,"children":878},{"id":877},"step-3-execute-and-format-results",[879],{"type":50,"value":880},"Step 3: Execute and Format Results",{"type":45,"tag":53,"props":882,"children":883},{},[884,886,892],{"type":50,"value":885},"Run the generated command. Use ",{"type":45,"tag":200,"props":887,"children":889},{"className":888},[],[890],{"type":50,"value":891},"--query",{"type":50,"value":893}," (JMESPath) to shape output:",{"type":45,"tag":782,"props":895,"children":899},{"className":896,"code":897,"language":898,"meta":787,"style":787},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","az graph query -q \"\u003CKQL>\" --query \"data[].{name:name, type:type, rg:resourceGroup}\" -o table\n","bash",[900],{"type":45,"tag":200,"props":901,"children":902},{"__ignoreMap":787},[903],{"type":45,"tag":793,"props":904,"children":905},{"class":795,"line":796},[906,911,916,921,926,930,935,939,944,948,953,957,962],{"type":45,"tag":793,"props":907,"children":909},{"style":908},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[910],{"type":50,"value":856},{"type":45,"tag":793,"props":912,"children":913},{"style":800},[914],{"type":50,"value":915}," graph",{"type":45,"tag":793,"props":917,"children":918},{"style":800},[919],{"type":50,"value":920}," query",{"type":45,"tag":793,"props":922,"children":923},{"style":800},[924],{"type":50,"value":925}," -q",{"type":45,"tag":793,"props":927,"children":928},{"style":816},[929],{"type":50,"value":824},{"type":45,"tag":793,"props":931,"children":932},{"style":800},[933],{"type":50,"value":934},"\u003CKQL>",{"type":45,"tag":793,"props":936,"children":937},{"style":816},[938],{"type":50,"value":174},{"type":45,"tag":793,"props":940,"children":941},{"style":800},[942],{"type":50,"value":943}," --query",{"type":45,"tag":793,"props":945,"children":946},{"style":816},[947],{"type":50,"value":824},{"type":45,"tag":793,"props":949,"children":950},{"style":800},[951],{"type":50,"value":952},"data[].{name:name, type:type, rg:resourceGroup}",{"type":45,"tag":793,"props":954,"children":955},{"style":816},[956],{"type":50,"value":174},{"type":45,"tag":793,"props":958,"children":959},{"style":800},[960],{"type":50,"value":961}," -o",{"type":45,"tag":793,"props":963,"children":964},{"style":800},[965],{"type":50,"value":966}," table\n",{"type":45,"tag":53,"props":968,"children":969},{},[970,971,977,979,985],{"type":50,"value":766},{"type":45,"tag":200,"props":972,"children":974},{"className":973},[],[975],{"type":50,"value":976},"--first N",{"type":50,"value":978}," to limit results. Use ",{"type":45,"tag":200,"props":980,"children":982},{"className":981},[],[983],{"type":50,"value":984},"--subscriptions",{"type":50,"value":986}," to scope.",{"type":45,"tag":59,"props":988,"children":990},{"id":989},"error-handling",[991],{"type":50,"value":992},"Error Handling",{"type":45,"tag":237,"props":994,"children":995},{},[996,1017],{"type":45,"tag":241,"props":997,"children":998},{},[999],{"type":45,"tag":245,"props":1000,"children":1001},{},[1002,1007,1012],{"type":45,"tag":249,"props":1003,"children":1004},{},[1005],{"type":50,"value":1006},"Error",{"type":45,"tag":249,"props":1008,"children":1009},{},[1010],{"type":50,"value":1011},"Cause",{"type":45,"tag":249,"props":1013,"children":1014},{},[1015],{"type":50,"value":1016},"Fix",{"type":45,"tag":260,"props":1018,"children":1019},{},[1020,1045,1067,1099],{"type":45,"tag":245,"props":1021,"children":1022},{},[1023,1032,1037],{"type":45,"tag":267,"props":1024,"children":1025},{},[1026],{"type":45,"tag":200,"props":1027,"children":1029},{"className":1028},[],[1030],{"type":50,"value":1031},"resource-graph extension not found",{"type":45,"tag":267,"props":1033,"children":1034},{},[1035],{"type":50,"value":1036},"Extension not installed",{"type":45,"tag":267,"props":1038,"children":1039},{},[1040],{"type":45,"tag":200,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":50,"value":319},{"type":45,"tag":245,"props":1046,"children":1047},{},[1048,1057,1062],{"type":45,"tag":267,"props":1049,"children":1050},{},[1051],{"type":45,"tag":200,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":50,"value":1056},"AuthorizationFailed",{"type":45,"tag":267,"props":1058,"children":1059},{},[1060],{"type":50,"value":1061},"No read access to subscription",{"type":45,"tag":267,"props":1063,"children":1064},{},[1065],{"type":50,"value":1066},"Check RBAC — need Reader role",{"type":45,"tag":245,"props":1068,"children":1069},{},[1070,1081,1086],{"type":45,"tag":267,"props":1071,"children":1072},{},[1073,1079],{"type":45,"tag":200,"props":1074,"children":1076},{"className":1075},[],[1077],{"type":50,"value":1078},"BadRequest",{"type":50,"value":1080}," on query",{"type":45,"tag":267,"props":1082,"children":1083},{},[1084],{"type":50,"value":1085},"Invalid KQL syntax",{"type":45,"tag":267,"props":1087,"children":1088},{},[1089,1091,1097],{"type":50,"value":1090},"Verify table\u002Fcolumn names; use ",{"type":45,"tag":200,"props":1092,"children":1094},{"className":1093},[],[1095],{"type":50,"value":1096},"=~",{"type":50,"value":1098}," for case-insensitive type matching",{"type":45,"tag":245,"props":1100,"children":1101},{},[1102,1107,1112],{"type":45,"tag":267,"props":1103,"children":1104},{},[1105],{"type":50,"value":1106},"Empty results",{"type":45,"tag":267,"props":1108,"children":1109},{},[1110],{"type":50,"value":1111},"No matching resources or wrong scope",{"type":45,"tag":267,"props":1113,"children":1114},{},[1115,1117,1122],{"type":50,"value":1116},"Check ",{"type":45,"tag":200,"props":1118,"children":1120},{"className":1119},[],[1121],{"type":50,"value":984},{"type":50,"value":1123}," flag; verify resource type spelling",{"type":45,"tag":59,"props":1125,"children":1127},{"id":1126},"constraints",[1128],{"type":50,"value":1129},"Constraints",{"type":45,"tag":71,"props":1131,"children":1132},{},[1133,1152,1177,1188,1200],{"type":45,"tag":75,"props":1134,"children":1135},{},[1136,1138,1143,1145,1150],{"type":50,"value":1137},"✅ ",{"type":45,"tag":79,"props":1139,"children":1140},{},[1141],{"type":50,"value":1142},"Always",{"type":50,"value":1144}," use ",{"type":45,"tag":200,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":50,"value":1096},{"type":50,"value":1151}," for case-insensitive type matching (types are lowercase)",{"type":45,"tag":75,"props":1153,"children":1154},{},[1155,1156,1160,1162,1167,1169,1175],{"type":50,"value":1137},{"type":45,"tag":79,"props":1157,"children":1158},{},[1159],{"type":50,"value":1142},{"type":50,"value":1161}," scope queries with ",{"type":45,"tag":200,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":50,"value":984},{"type":50,"value":1168}," or ",{"type":45,"tag":200,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":50,"value":1174},"--first",{"type":50,"value":1176}," for large tenants",{"type":45,"tag":75,"props":1178,"children":1179},{},[1180,1181,1186],{"type":50,"value":1137},{"type":45,"tag":79,"props":1182,"children":1183},{},[1184],{"type":50,"value":1185},"Prefer",{"type":50,"value":1187}," dedicated MCP tools for single-resource-type queries",{"type":45,"tag":75,"props":1189,"children":1190},{},[1191,1193,1198],{"type":50,"value":1192},"❌ ",{"type":45,"tag":79,"props":1194,"children":1195},{},[1196],{"type":50,"value":1197},"Never",{"type":50,"value":1199}," use ARG for real-time monitoring (data has slight delay)",{"type":45,"tag":75,"props":1201,"children":1202},{},[1203,1204,1208],{"type":50,"value":1192},{"type":45,"tag":79,"props":1205,"children":1206},{},[1207],{"type":50,"value":1197},{"type":50,"value":1209}," attempt mutations through ARG (read-only)",{"type":45,"tag":1211,"props":1212,"children":1213},"style",{},[1214],{"type":50,"value":1215},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1217,"total":1344},[1218,1238,1252,1271,1292,1309,1327],{"slug":1219,"name":1219,"fn":1220,"description":1221,"org":1222,"tags":1223,"stars":25,"repoUrl":26,"updatedAt":1237},"airunway-aks-setup","set up AI Runway on Azure Kubernetes Service","Set up AI Runway on AKS — from bare cluster to running model. Covers cluster verification, controller install, GPU assessment, provider setup, and first deployment. WHEN: \"setup AI Runway\", \"onboard AKS cluster\", \"install AI Runway\", \"airunway setup\", \"deploy model to AKS\", \"GPU inference on AKS\", \"KAITO setup on AKS\", \"run LLM on AKS\", \"vLLM on AKS\", \"set up model serving on AKS\", \"AI Runway controller\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1224,1227,1228,1231,1234],{"name":1225,"slug":1226,"type":15},"AI Infrastructure","ai-infrastructure",{"name":17,"slug":18,"type":15},{"name":1229,"slug":1230,"type":15},"Deployment","deployment",{"name":1232,"slug":1233,"type":15},"Kubernetes","kubernetes",{"name":1235,"slug":1236,"type":15},"Runway","runway","2026-07-31T05:56:13.054971",{"slug":1239,"name":1239,"fn":1240,"description":1241,"org":1242,"tags":1243,"stars":25,"repoUrl":26,"updatedAt":1251},"appinsights-instrumentation","instrument webapps with Azure Application Insights","Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1244,1245,1248],{"name":17,"slug":18,"type":15},{"name":1246,"slug":1247,"type":15},"Monitoring","monitoring",{"name":1249,"slug":1250,"type":15},"Observability","observability","2026-07-31T05:56:09.068625",{"slug":1253,"name":1253,"fn":1254,"description":1255,"org":1256,"tags":1257,"stars":25,"repoUrl":26,"updatedAt":1270},"azure-ai","build applications with Azure AI services","Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector\u002Fhybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1258,1259,1260,1263,1266,1267],{"name":1225,"slug":1226,"type":15},{"name":17,"slug":18,"type":15},{"name":1261,"slug":1262,"type":15},"LLM","llm",{"name":1264,"slug":1265,"type":15},"OpenAI","openai",{"name":20,"slug":21,"type":15},{"name":1268,"slug":1269,"type":15},"Speech","speech","2026-07-31T05:56:19.069133",{"slug":1272,"name":1272,"fn":1273,"description":1274,"org":1275,"tags":1276,"stars":25,"repoUrl":26,"updatedAt":1291},"azure-aigateway","configure Azure API Management as an AI Gateway","Configure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: semantic caching, token limit, content safety, load balancing, AI model governance, MCP rate limiting, jailbreak detection, add Azure OpenAI backend, add AI Foundry model, test AI gateway, LLM policies, configure AI backend, token metrics, AI cost control, convert API to MCP, import OpenAPI to gateway.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1277,1278,1281,1282,1285,1288],{"name":1225,"slug":1226,"type":15},{"name":1279,"slug":1280,"type":15},"API Development","api-development",{"name":17,"slug":18,"type":15},{"name":1283,"slug":1284,"type":15},"Caching","caching",{"name":1286,"slug":1287,"type":15},"Governance","governance",{"name":1289,"slug":1290,"type":15},"Security","security","2026-07-31T05:56:23.05242",{"slug":1293,"name":1293,"fn":1294,"description":1295,"org":1296,"tags":1297,"stars":25,"repoUrl":26,"updatedAt":1308},"azure-cloud-migrate","migrate cross-cloud workloads to Azure","Assess and migrate cross-cloud workloads to Azure with reports and code conversion. Supports Lambda→Functions, Beanstalk\u002FHeroku\u002FApp Engine→App Service, Fargate\u002FKubernetes\u002FCloud Run\u002FSpring Boot→Container Apps. WHEN: migrate Lambda to Functions, AWS to Azure, migrate Beanstalk, migrate Heroku, migrate App Engine, Cloud Run migration, Fargate to ACA, ECS\u002FKubernetes\u002FGKE\u002FEKS to Container Apps, Spring Boot to Container Apps, cross-cloud migration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1298,1301,1302,1305],{"name":1299,"slug":1300,"type":15},"AWS","aws",{"name":17,"slug":18,"type":15},{"name":1303,"slug":1304,"type":15},"Google Cloud","google-cloud",{"name":1306,"slug":1307,"type":15},"Migration","migration","2026-07-31T05:56:29.049979",{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1313,"tags":1314,"stars":25,"repoUrl":26,"updatedAt":1326},"azure-compliance","audit Azure compliance and security","Run Azure compliance and security audits with azqr plus Key Vault expiration checks. Covers best-practice assessment, resource review, policy\u002Fcompliance validation, and security posture checks. WHEN: compliance scan, security audit, BEFORE running azqr (compliance cli tool), Azure best practices, Key Vault expiration check, expired certificates, expiring secrets, orphaned resources, compliance assessment.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1315,1318,1319,1322,1325],{"name":1316,"slug":1317,"type":15},"Audit","audit",{"name":17,"slug":18,"type":15},{"name":1320,"slug":1321,"type":15},"Compliance","compliance",{"name":1323,"slug":1324,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":1289,"slug":1290,"type":15},"2026-07-31T05:56:11.06797",{"slug":1328,"name":1328,"fn":1329,"description":1330,"org":1331,"tags":1332,"stars":25,"repoUrl":26,"updatedAt":1343},"azure-compute","manage and optimize Azure compute resources","Azure VM\u002FVMSS router. WHEN: create \u002F provision \u002F deploy \u002F spin-up VM, recommend VM size, compare VM pricing, VMSS, scale set, autoscale, burstable, lightweight server, website, backend, GPU, machine learning, HPC simulation, dev\u002Ftest, workload, family, load balancer, Flexible orchestration, Uniform orchestration, cost estimate, capacity reservation (CRG), reserve, guarantee capacity, pre-provision, CRG association, CRG disassociation, machine enrollment (EMM), Essential Machine Management, monitor. PREFER OVER mcp__azure__get_azure_bestpractices for VM create intents — use compute_vm_list-skus \u002F compute_vm_list-images \u002F compute_vm_check-quota.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1333,1334,1335,1338,1341],{"name":1225,"slug":1226,"type":15},{"name":17,"slug":18,"type":15},{"name":1336,"slug":1337,"type":15},"Cost Optimization","cost-optimization",{"name":1339,"slug":1340,"type":15},"Performance","performance",{"name":520,"slug":1342,"type":15},"virtual-machines","2026-07-31T05:56:16.042469",28,{"items":1346,"total":1526},[1347,1369,1386,1405,1416,1431,1442,1453,1468,1483,1501,1514],{"slug":1348,"name":1348,"fn":1349,"description":1350,"org":1351,"tags":1352,"stars":1366,"repoUrl":1367,"updatedAt":1368},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1353,1356,1359,1360,1363],{"name":1354,"slug":1355,"type":15},"Engineering","engineering",{"name":1357,"slug":1358,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":1361,"slug":1362,"type":15},"Project Management","project-management",{"name":1364,"slug":1365,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":1370,"name":1370,"fn":1371,"description":1372,"org":1373,"tags":1374,"stars":1383,"repoUrl":1384,"updatedAt":1385},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1375,1378,1381,1382],{"name":1376,"slug":1377,"type":15},".NET","net",{"name":1379,"slug":1380,"type":15},"Agents","agents",{"name":17,"slug":18,"type":15},{"name":1261,"slug":1262,"type":15},2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":1387,"name":1387,"fn":1388,"description":1389,"org":1390,"tags":1391,"stars":1383,"repoUrl":1384,"updatedAt":1404},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1392,1395,1396,1399,1402,1403],{"name":1393,"slug":1394,"type":15},"Analytics","analytics",{"name":17,"slug":18,"type":15},{"name":1397,"slug":1398,"type":15},"Data Analysis","data-analysis",{"name":1400,"slug":1401,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":1246,"slug":1247,"type":15},"2026-05-13T06:14:16.261754",{"slug":1406,"name":1406,"fn":1407,"description":1408,"org":1409,"tags":1410,"stars":1383,"repoUrl":1384,"updatedAt":1415},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1411,1412,1413,1414],{"name":1225,"slug":1226,"type":15},{"name":17,"slug":18,"type":15},{"name":1400,"slug":1401,"type":15},{"name":1289,"slug":1290,"type":15},"2026-07-07T06:53:31.293235",{"slug":1417,"name":1417,"fn":1418,"description":1419,"org":1420,"tags":1421,"stars":1383,"repoUrl":1384,"updatedAt":1430},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1422,1423,1424,1425,1426,1429],{"name":17,"slug":18,"type":15},{"name":1320,"slug":1321,"type":15},{"name":1261,"slug":1262,"type":15},{"name":9,"slug":8,"type":15},{"name":1427,"slug":1428,"type":15},"Python","python",{"name":1289,"slug":1290,"type":15},"2026-07-18T05:14:23.017504",{"slug":1432,"name":1432,"fn":1433,"description":1434,"org":1435,"tags":1436,"stars":1383,"repoUrl":1384,"updatedAt":1441},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1437,1438,1439,1440],{"name":1393,"slug":1394,"type":15},{"name":17,"slug":18,"type":15},{"name":1261,"slug":1262,"type":15},{"name":1427,"slug":1428,"type":15},"2026-07-31T05:54:29.068751",{"slug":1443,"name":1443,"fn":1444,"description":1445,"org":1446,"tags":1447,"stars":1383,"repoUrl":1384,"updatedAt":1452},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1448,1449,1450,1451],{"name":1279,"slug":1280,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"name":1427,"slug":1428,"type":15},"2026-07-18T05:14:16.988376",{"slug":1454,"name":1454,"fn":1455,"description":1456,"org":1457,"tags":1458,"stars":1383,"repoUrl":1384,"updatedAt":1467},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1459,1460,1463,1466],{"name":17,"slug":18,"type":15},{"name":1461,"slug":1462,"type":15},"Computer Vision","computer-vision",{"name":1464,"slug":1465,"type":15},"Images","images",{"name":1427,"slug":1428,"type":15},"2026-07-18T05:14:18.007737",{"slug":1469,"name":1469,"fn":1470,"description":1471,"org":1472,"tags":1473,"stars":1383,"repoUrl":1384,"updatedAt":1482},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1474,1475,1478,1481],{"name":17,"slug":18,"type":15},{"name":1476,"slug":1477,"type":15},"Configuration","configuration",{"name":1479,"slug":1480,"type":15},"Feature Flags","feature-flags",{"name":1400,"slug":1401,"type":15},"2026-07-03T16:32:01.278468",{"slug":1484,"name":1484,"fn":1485,"description":1486,"org":1487,"tags":1488,"stars":1383,"repoUrl":1384,"updatedAt":1500},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1489,1491,1494,1497],{"name":564,"slug":1490,"type":15},"cosmos-db",{"name":1492,"slug":1493,"type":15},"Database","database",{"name":1495,"slug":1496,"type":15},"NoSQL","nosql",{"name":1498,"slug":1499,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1502,"name":1502,"fn":1485,"description":1503,"org":1504,"tags":1505,"stars":1383,"repoUrl":1384,"updatedAt":1513},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1506,1507,1508,1509,1510],{"name":564,"slug":1490,"type":15},{"name":1492,"slug":1493,"type":15},{"name":9,"slug":8,"type":15},{"name":1495,"slug":1496,"type":15},{"name":1511,"slug":1512,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1515,"name":1515,"fn":1516,"description":1517,"org":1518,"tags":1519,"stars":1383,"repoUrl":1384,"updatedAt":1525},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1520,1521,1522,1523,1524],{"name":17,"slug":18,"type":15},{"name":564,"slug":1490,"type":15},{"name":1492,"slug":1493,"type":15},{"name":1400,"slug":1401,"type":15},{"name":1495,"slug":1496,"type":15},"2026-05-13T06:14:17.582229",267]