[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-azure-storage":3,"mdc--x2bgl8-key":40,"related-org-microsoft-azure-storage":1184,"related-repo-microsoft-azure-storage":1371},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":35,"sourceUrl":38,"mdContent":39},"azure-storage","manage Azure storage services","Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Answers questions about storage access tiers (hot, cool, cold, archive), when to use each tier, and tier comparison. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics. Includes lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, storage tiers, hot cool cold archive, storage tier comparison, when to use storage tiers, lifecycle management, Azure Storage concepts. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging).",{"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,25],{"name":13,"slug":14,"type":15},"Azure","azure","tag",{"name":17,"slug":18,"type":15},"Data Engineering","data-engineering",{"name":20,"slug":21,"type":15},"NoSQL","nosql",{"name":23,"slug":24,"type":15},"Database","database",{"name":26,"slug":27,"type":15},"Storage","storage",1324,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fazure-skills","2026-07-31T05:56:21.050948","MIT",220,[34],"agent-skills",{"repoUrl":29,"stars":28,"forks":32,"topics":36,"description":37},[34],"Official agent plugin providing skills and MCP server configurations for Azure scenarios.","https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fazure-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fazure-storage","---\nname: azure-storage\ndescription: \"Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Answers questions about storage access tiers (hot, cool, cold, archive), when to use each tier, and tier comparison. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics. Includes lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, storage tiers, hot cool cold archive, storage tier comparison, when to use storage tiers, lifecycle management, Azure Storage concepts. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging).\"\nlicense: MIT\nmetadata:\n  author: Microsoft\n  version: \"1.2.1\"\n---\n\n# Azure Storage Services\n\n## Services\n\n| Service | Use When | MCP Tools | CLI |\n|---------|----------|-----------|-----|\n| Blob Storage | Objects, files, backups, static content | `azure__storage` | `az storage blob` |\n| File Shares | SMB file shares, lift-and-shift | - | `az storage file` |\n| Queue Storage | Async messaging, task queues | - | `az storage queue` |\n| Table Storage | NoSQL key-value (consider Cosmos DB) | - | `az storage table` |\n| Data Lake | Big data analytics, hierarchical namespace | - | `az storage fs` |\n\n## MCP Server (Preferred)\n\nWhen Azure MCP is enabled:\n\n- `azure__storage` with command `storage_account_list` - List storage accounts\n- `azure__storage` with command `storage_container_list` - List containers in account\n- `azure__storage` with command `storage_blob_list` - List blobs in container\n- `azure__storage` with command `storage_blob_get` - Download blob content\n- `azure__storage` with command `storage_blob_put` - Upload blob content\n\n**If Azure MCP is not enabled:** Run `\u002Fazure:setup` or enable via `\u002Fmcp`.\n\n## CLI Fallback\n\n```bash\n# List storage accounts\naz storage account list --output table\n\n# List containers\naz storage container list --account-name ACCOUNT --output table\n\n# List blobs\naz storage blob list --account-name ACCOUNT --container-name CONTAINER --output table\n\n# Download blob\naz storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH\n\n# Upload blob\naz storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH\n```\n\n## Storage Account Tiers\n\n| Tier | Use Case | Performance |\n|------|----------|-------------|\n| Standard | General purpose, backup | Milliseconds |\n| Premium | Databases, high IOPS | Sub-millisecond |\n\n## Blob Access Tiers\n\n| Tier | Access Frequency | Cost |\n|------|-----------------|------|\n| Hot | Frequent | Higher storage, lower access |\n| Cool | Infrequent (30+ days) | Lower storage, higher access |\n| Cold | Rare (90+ days) | Lower still |\n| Archive | Rarely (180+ days) | Lowest storage, rehydration required |\n\n## Redundancy Options\n\n| Type | Durability | Use Case |\n|------|------------|----------|\n| LRS | 11 nines | Dev\u002Ftest, recreatable data |\n| ZRS | 12 nines | Regional high availability |\n| GRS | 16 nines | Disaster recovery |\n| GZRS | 16 nines | Best durability |\n\n## Service Details\n\nFor deep documentation on specific services:\n\n- Blob storage patterns and lifecycle -> [Blob Storage documentation](https:\u002F\u002Flearn.microsoft.com\u002Fazure\u002Fstorage\u002Fblobs\u002Fstorage-blobs-overview)\n- File shares and Azure File Sync -> [Azure Files documentation](https:\u002F\u002Flearn.microsoft.com\u002Fazure\u002Fstorage\u002Ffiles\u002Fstorage-files-introduction)\n- Queue patterns and poison handling -> [Queue Storage documentation](https:\u002F\u002Flearn.microsoft.com\u002Fazure\u002Fstorage\u002Fqueues\u002Fstorage-queues-introduction)\n\n## SDK Quick References\n\nFor building applications with Azure Storage SDKs, see the condensed guides:\n\n- **Blob Storage**: [Python](references\u002Fsdk\u002Fazure-storage-blob-py.md) | [TypeScript](references\u002Fsdk\u002Fazure-storage-blob-ts.md) | [Java](references\u002Fsdk\u002Fazure-storage-blob-java.md) | [Rust](references\u002Fsdk\u002Fazure-storage-blob-rust.md)\n- **Queue Storage**: [Python](references\u002Fsdk\u002Fazure-storage-queue-py.md) | [TypeScript](references\u002Fsdk\u002Fazure-storage-queue-ts.md)\n- **File Shares**: [Python](references\u002Fsdk\u002Fazure-storage-file-share-py.md) | [TypeScript](references\u002Fsdk\u002Fazure-storage-file-share-ts.md)\n- **Data Lake**: [Python](references\u002Fsdk\u002Fazure-storage-file-datalake-py.md)\n- **Tables**: [Python](references\u002Fsdk\u002Fazure-data-tables-py.md) | [Java](references\u002Fsdk\u002Fazure-data-tables-java.md)\n\nFor full package listing across all languages, see [SDK Usage Guide](references\u002Fsdk-usage.md).\n\n## Azure SDKs\n\nFor building applications that interact with Azure Storage programmatically, Azure provides SDK packages in multiple languages (.NET, Java, JavaScript, Python, Go, Rust). See [SDK Usage Guide](references\u002Fsdk-usage.md) for package names, installation commands, and quick start examples.\n",{"data":41,"body":44},{"name":4,"description":6,"license":31,"metadata":42},{"author":9,"version":43},"1.2.1",{"type":45,"children":46},"root",[47,56,63,238,244,250,341,368,374,699,705,768,774,872,878,975,981,986,1027,1033,1038,1149,1161,1167,1178],{"type":48,"tag":49,"props":50,"children":52},"element","h1",{"id":51},"azure-storage-services",[53],{"type":54,"value":55},"text","Azure Storage Services",{"type":48,"tag":57,"props":58,"children":60},"h2",{"id":59},"services",[61],{"type":54,"value":62},"Services",{"type":48,"tag":64,"props":65,"children":66},"table",{},[67,96],{"type":48,"tag":68,"props":69,"children":70},"thead",{},[71],{"type":48,"tag":72,"props":73,"children":74},"tr",{},[75,81,86,91],{"type":48,"tag":76,"props":77,"children":78},"th",{},[79],{"type":54,"value":80},"Service",{"type":48,"tag":76,"props":82,"children":83},{},[84],{"type":54,"value":85},"Use When",{"type":48,"tag":76,"props":87,"children":88},{},[89],{"type":54,"value":90},"MCP Tools",{"type":48,"tag":76,"props":92,"children":93},{},[94],{"type":54,"value":95},"CLI",{"type":48,"tag":97,"props":98,"children":99},"tbody",{},[100,133,160,186,212],{"type":48,"tag":72,"props":101,"children":102},{},[103,109,114,124],{"type":48,"tag":104,"props":105,"children":106},"td",{},[107],{"type":54,"value":108},"Blob Storage",{"type":48,"tag":104,"props":110,"children":111},{},[112],{"type":54,"value":113},"Objects, files, backups, static content",{"type":48,"tag":104,"props":115,"children":116},{},[117],{"type":48,"tag":118,"props":119,"children":121},"code",{"className":120},[],[122],{"type":54,"value":123},"azure__storage",{"type":48,"tag":104,"props":125,"children":126},{},[127],{"type":48,"tag":118,"props":128,"children":130},{"className":129},[],[131],{"type":54,"value":132},"az storage blob",{"type":48,"tag":72,"props":134,"children":135},{},[136,141,146,151],{"type":48,"tag":104,"props":137,"children":138},{},[139],{"type":54,"value":140},"File Shares",{"type":48,"tag":104,"props":142,"children":143},{},[144],{"type":54,"value":145},"SMB file shares, lift-and-shift",{"type":48,"tag":104,"props":147,"children":148},{},[149],{"type":54,"value":150},"-",{"type":48,"tag":104,"props":152,"children":153},{},[154],{"type":48,"tag":118,"props":155,"children":157},{"className":156},[],[158],{"type":54,"value":159},"az storage file",{"type":48,"tag":72,"props":161,"children":162},{},[163,168,173,177],{"type":48,"tag":104,"props":164,"children":165},{},[166],{"type":54,"value":167},"Queue Storage",{"type":48,"tag":104,"props":169,"children":170},{},[171],{"type":54,"value":172},"Async messaging, task queues",{"type":48,"tag":104,"props":174,"children":175},{},[176],{"type":54,"value":150},{"type":48,"tag":104,"props":178,"children":179},{},[180],{"type":48,"tag":118,"props":181,"children":183},{"className":182},[],[184],{"type":54,"value":185},"az storage queue",{"type":48,"tag":72,"props":187,"children":188},{},[189,194,199,203],{"type":48,"tag":104,"props":190,"children":191},{},[192],{"type":54,"value":193},"Table Storage",{"type":48,"tag":104,"props":195,"children":196},{},[197],{"type":54,"value":198},"NoSQL key-value (consider Cosmos DB)",{"type":48,"tag":104,"props":200,"children":201},{},[202],{"type":54,"value":150},{"type":48,"tag":104,"props":204,"children":205},{},[206],{"type":48,"tag":118,"props":207,"children":209},{"className":208},[],[210],{"type":54,"value":211},"az storage table",{"type":48,"tag":72,"props":213,"children":214},{},[215,220,225,229],{"type":48,"tag":104,"props":216,"children":217},{},[218],{"type":54,"value":219},"Data Lake",{"type":48,"tag":104,"props":221,"children":222},{},[223],{"type":54,"value":224},"Big data analytics, hierarchical namespace",{"type":48,"tag":104,"props":226,"children":227},{},[228],{"type":54,"value":150},{"type":48,"tag":104,"props":230,"children":231},{},[232],{"type":48,"tag":118,"props":233,"children":235},{"className":234},[],[236],{"type":54,"value":237},"az storage fs",{"type":48,"tag":57,"props":239,"children":241},{"id":240},"mcp-server-preferred",[242],{"type":54,"value":243},"MCP Server (Preferred)",{"type":48,"tag":245,"props":246,"children":247},"p",{},[248],{"type":54,"value":249},"When Azure MCP is enabled:",{"type":48,"tag":251,"props":252,"children":253},"ul",{},[254,273,290,307,324],{"type":48,"tag":255,"props":256,"children":257},"li",{},[258,263,265,271],{"type":48,"tag":118,"props":259,"children":261},{"className":260},[],[262],{"type":54,"value":123},{"type":54,"value":264}," with command ",{"type":48,"tag":118,"props":266,"children":268},{"className":267},[],[269],{"type":54,"value":270},"storage_account_list",{"type":54,"value":272}," - List storage accounts",{"type":48,"tag":255,"props":274,"children":275},{},[276,281,282,288],{"type":48,"tag":118,"props":277,"children":279},{"className":278},[],[280],{"type":54,"value":123},{"type":54,"value":264},{"type":48,"tag":118,"props":283,"children":285},{"className":284},[],[286],{"type":54,"value":287},"storage_container_list",{"type":54,"value":289}," - List containers in account",{"type":48,"tag":255,"props":291,"children":292},{},[293,298,299,305],{"type":48,"tag":118,"props":294,"children":296},{"className":295},[],[297],{"type":54,"value":123},{"type":54,"value":264},{"type":48,"tag":118,"props":300,"children":302},{"className":301},[],[303],{"type":54,"value":304},"storage_blob_list",{"type":54,"value":306}," - List blobs in container",{"type":48,"tag":255,"props":308,"children":309},{},[310,315,316,322],{"type":48,"tag":118,"props":311,"children":313},{"className":312},[],[314],{"type":54,"value":123},{"type":54,"value":264},{"type":48,"tag":118,"props":317,"children":319},{"className":318},[],[320],{"type":54,"value":321},"storage_blob_get",{"type":54,"value":323}," - Download blob content",{"type":48,"tag":255,"props":325,"children":326},{},[327,332,333,339],{"type":48,"tag":118,"props":328,"children":330},{"className":329},[],[331],{"type":54,"value":123},{"type":54,"value":264},{"type":48,"tag":118,"props":334,"children":336},{"className":335},[],[337],{"type":54,"value":338},"storage_blob_put",{"type":54,"value":340}," - Upload blob content",{"type":48,"tag":245,"props":342,"children":343},{},[344,350,352,358,360,366],{"type":48,"tag":345,"props":346,"children":347},"strong",{},[348],{"type":54,"value":349},"If Azure MCP is not enabled:",{"type":54,"value":351}," Run ",{"type":48,"tag":118,"props":353,"children":355},{"className":354},[],[356],{"type":54,"value":357},"\u002Fazure:setup",{"type":54,"value":359}," or enable via ",{"type":48,"tag":118,"props":361,"children":363},{"className":362},[],[364],{"type":54,"value":365},"\u002Fmcp",{"type":54,"value":367},".",{"type":48,"tag":57,"props":369,"children":371},{"id":370},"cli-fallback",[372],{"type":54,"value":373},"CLI Fallback",{"type":48,"tag":375,"props":376,"children":381},"pre",{"className":377,"code":378,"language":379,"meta":380,"style":380},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# List storage accounts\naz storage account list --output table\n\n# List containers\naz storage container list --account-name ACCOUNT --output table\n\n# List blobs\naz storage blob list --account-name ACCOUNT --container-name CONTAINER --output table\n\n# Download blob\naz storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH\n\n# Upload blob\naz storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH\n","bash","",[382],{"type":48,"tag":118,"props":383,"children":384},{"__ignoreMap":380},[385,397,433,443,452,491,499,508,555,563,572,629,637,646],{"type":48,"tag":386,"props":387,"children":390},"span",{"class":388,"line":389},"line",1,[391],{"type":48,"tag":386,"props":392,"children":394},{"style":393},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[395],{"type":54,"value":396},"# List storage accounts\n",{"type":48,"tag":386,"props":398,"children":400},{"class":388,"line":399},2,[401,407,413,418,423,428],{"type":48,"tag":386,"props":402,"children":404},{"style":403},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[405],{"type":54,"value":406},"az",{"type":48,"tag":386,"props":408,"children":410},{"style":409},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[411],{"type":54,"value":412}," storage",{"type":48,"tag":386,"props":414,"children":415},{"style":409},[416],{"type":54,"value":417}," account",{"type":48,"tag":386,"props":419,"children":420},{"style":409},[421],{"type":54,"value":422}," list",{"type":48,"tag":386,"props":424,"children":425},{"style":409},[426],{"type":54,"value":427}," --output",{"type":48,"tag":386,"props":429,"children":430},{"style":409},[431],{"type":54,"value":432}," table\n",{"type":48,"tag":386,"props":434,"children":436},{"class":388,"line":435},3,[437],{"type":48,"tag":386,"props":438,"children":440},{"emptyLinePlaceholder":439},true,[441],{"type":54,"value":442},"\n",{"type":48,"tag":386,"props":444,"children":446},{"class":388,"line":445},4,[447],{"type":48,"tag":386,"props":448,"children":449},{"style":393},[450],{"type":54,"value":451},"# List containers\n",{"type":48,"tag":386,"props":453,"children":455},{"class":388,"line":454},5,[456,460,464,469,473,478,483,487],{"type":48,"tag":386,"props":457,"children":458},{"style":403},[459],{"type":54,"value":406},{"type":48,"tag":386,"props":461,"children":462},{"style":409},[463],{"type":54,"value":412},{"type":48,"tag":386,"props":465,"children":466},{"style":409},[467],{"type":54,"value":468}," container",{"type":48,"tag":386,"props":470,"children":471},{"style":409},[472],{"type":54,"value":422},{"type":48,"tag":386,"props":474,"children":475},{"style":409},[476],{"type":54,"value":477}," --account-name",{"type":48,"tag":386,"props":479,"children":480},{"style":409},[481],{"type":54,"value":482}," ACCOUNT",{"type":48,"tag":386,"props":484,"children":485},{"style":409},[486],{"type":54,"value":427},{"type":48,"tag":386,"props":488,"children":489},{"style":409},[490],{"type":54,"value":432},{"type":48,"tag":386,"props":492,"children":494},{"class":388,"line":493},6,[495],{"type":48,"tag":386,"props":496,"children":497},{"emptyLinePlaceholder":439},[498],{"type":54,"value":442},{"type":48,"tag":386,"props":500,"children":502},{"class":388,"line":501},7,[503],{"type":48,"tag":386,"props":504,"children":505},{"style":393},[506],{"type":54,"value":507},"# List blobs\n",{"type":48,"tag":386,"props":509,"children":511},{"class":388,"line":510},8,[512,516,520,525,529,533,537,542,547,551],{"type":48,"tag":386,"props":513,"children":514},{"style":403},[515],{"type":54,"value":406},{"type":48,"tag":386,"props":517,"children":518},{"style":409},[519],{"type":54,"value":412},{"type":48,"tag":386,"props":521,"children":522},{"style":409},[523],{"type":54,"value":524}," blob",{"type":48,"tag":386,"props":526,"children":527},{"style":409},[528],{"type":54,"value":422},{"type":48,"tag":386,"props":530,"children":531},{"style":409},[532],{"type":54,"value":477},{"type":48,"tag":386,"props":534,"children":535},{"style":409},[536],{"type":54,"value":482},{"type":48,"tag":386,"props":538,"children":539},{"style":409},[540],{"type":54,"value":541}," --container-name",{"type":48,"tag":386,"props":543,"children":544},{"style":409},[545],{"type":54,"value":546}," CONTAINER",{"type":48,"tag":386,"props":548,"children":549},{"style":409},[550],{"type":54,"value":427},{"type":48,"tag":386,"props":552,"children":553},{"style":409},[554],{"type":54,"value":432},{"type":48,"tag":386,"props":556,"children":558},{"class":388,"line":557},9,[559],{"type":48,"tag":386,"props":560,"children":561},{"emptyLinePlaceholder":439},[562],{"type":54,"value":442},{"type":48,"tag":386,"props":564,"children":566},{"class":388,"line":565},10,[567],{"type":48,"tag":386,"props":568,"children":569},{"style":393},[570],{"type":54,"value":571},"# Download blob\n",{"type":48,"tag":386,"props":573,"children":575},{"class":388,"line":574},11,[576,580,584,588,593,597,601,605,609,614,619,624],{"type":48,"tag":386,"props":577,"children":578},{"style":403},[579],{"type":54,"value":406},{"type":48,"tag":386,"props":581,"children":582},{"style":409},[583],{"type":54,"value":412},{"type":48,"tag":386,"props":585,"children":586},{"style":409},[587],{"type":54,"value":524},{"type":48,"tag":386,"props":589,"children":590},{"style":409},[591],{"type":54,"value":592}," download",{"type":48,"tag":386,"props":594,"children":595},{"style":409},[596],{"type":54,"value":477},{"type":48,"tag":386,"props":598,"children":599},{"style":409},[600],{"type":54,"value":482},{"type":48,"tag":386,"props":602,"children":603},{"style":409},[604],{"type":54,"value":541},{"type":48,"tag":386,"props":606,"children":607},{"style":409},[608],{"type":54,"value":546},{"type":48,"tag":386,"props":610,"children":611},{"style":409},[612],{"type":54,"value":613}," --name",{"type":48,"tag":386,"props":615,"children":616},{"style":409},[617],{"type":54,"value":618}," BLOB",{"type":48,"tag":386,"props":620,"children":621},{"style":409},[622],{"type":54,"value":623}," --file",{"type":48,"tag":386,"props":625,"children":626},{"style":409},[627],{"type":54,"value":628}," LOCAL_PATH\n",{"type":48,"tag":386,"props":630,"children":632},{"class":388,"line":631},12,[633],{"type":48,"tag":386,"props":634,"children":635},{"emptyLinePlaceholder":439},[636],{"type":54,"value":442},{"type":48,"tag":386,"props":638,"children":640},{"class":388,"line":639},13,[641],{"type":48,"tag":386,"props":642,"children":643},{"style":393},[644],{"type":54,"value":645},"# Upload blob\n",{"type":48,"tag":386,"props":647,"children":649},{"class":388,"line":648},14,[650,654,658,662,667,671,675,679,683,687,691,695],{"type":48,"tag":386,"props":651,"children":652},{"style":403},[653],{"type":54,"value":406},{"type":48,"tag":386,"props":655,"children":656},{"style":409},[657],{"type":54,"value":412},{"type":48,"tag":386,"props":659,"children":660},{"style":409},[661],{"type":54,"value":524},{"type":48,"tag":386,"props":663,"children":664},{"style":409},[665],{"type":54,"value":666}," upload",{"type":48,"tag":386,"props":668,"children":669},{"style":409},[670],{"type":54,"value":477},{"type":48,"tag":386,"props":672,"children":673},{"style":409},[674],{"type":54,"value":482},{"type":48,"tag":386,"props":676,"children":677},{"style":409},[678],{"type":54,"value":541},{"type":48,"tag":386,"props":680,"children":681},{"style":409},[682],{"type":54,"value":546},{"type":48,"tag":386,"props":684,"children":685},{"style":409},[686],{"type":54,"value":613},{"type":48,"tag":386,"props":688,"children":689},{"style":409},[690],{"type":54,"value":618},{"type":48,"tag":386,"props":692,"children":693},{"style":409},[694],{"type":54,"value":623},{"type":48,"tag":386,"props":696,"children":697},{"style":409},[698],{"type":54,"value":628},{"type":48,"tag":57,"props":700,"children":702},{"id":701},"storage-account-tiers",[703],{"type":54,"value":704},"Storage Account Tiers",{"type":48,"tag":64,"props":706,"children":707},{},[708,729],{"type":48,"tag":68,"props":709,"children":710},{},[711],{"type":48,"tag":72,"props":712,"children":713},{},[714,719,724],{"type":48,"tag":76,"props":715,"children":716},{},[717],{"type":54,"value":718},"Tier",{"type":48,"tag":76,"props":720,"children":721},{},[722],{"type":54,"value":723},"Use Case",{"type":48,"tag":76,"props":725,"children":726},{},[727],{"type":54,"value":728},"Performance",{"type":48,"tag":97,"props":730,"children":731},{},[732,750],{"type":48,"tag":72,"props":733,"children":734},{},[735,740,745],{"type":48,"tag":104,"props":736,"children":737},{},[738],{"type":54,"value":739},"Standard",{"type":48,"tag":104,"props":741,"children":742},{},[743],{"type":54,"value":744},"General purpose, backup",{"type":48,"tag":104,"props":746,"children":747},{},[748],{"type":54,"value":749},"Milliseconds",{"type":48,"tag":72,"props":751,"children":752},{},[753,758,763],{"type":48,"tag":104,"props":754,"children":755},{},[756],{"type":54,"value":757},"Premium",{"type":48,"tag":104,"props":759,"children":760},{},[761],{"type":54,"value":762},"Databases, high IOPS",{"type":48,"tag":104,"props":764,"children":765},{},[766],{"type":54,"value":767},"Sub-millisecond",{"type":48,"tag":57,"props":769,"children":771},{"id":770},"blob-access-tiers",[772],{"type":54,"value":773},"Blob Access Tiers",{"type":48,"tag":64,"props":775,"children":776},{},[777,797],{"type":48,"tag":68,"props":778,"children":779},{},[780],{"type":48,"tag":72,"props":781,"children":782},{},[783,787,792],{"type":48,"tag":76,"props":784,"children":785},{},[786],{"type":54,"value":718},{"type":48,"tag":76,"props":788,"children":789},{},[790],{"type":54,"value":791},"Access Frequency",{"type":48,"tag":76,"props":793,"children":794},{},[795],{"type":54,"value":796},"Cost",{"type":48,"tag":97,"props":798,"children":799},{},[800,818,836,854],{"type":48,"tag":72,"props":801,"children":802},{},[803,808,813],{"type":48,"tag":104,"props":804,"children":805},{},[806],{"type":54,"value":807},"Hot",{"type":48,"tag":104,"props":809,"children":810},{},[811],{"type":54,"value":812},"Frequent",{"type":48,"tag":104,"props":814,"children":815},{},[816],{"type":54,"value":817},"Higher storage, lower access",{"type":48,"tag":72,"props":819,"children":820},{},[821,826,831],{"type":48,"tag":104,"props":822,"children":823},{},[824],{"type":54,"value":825},"Cool",{"type":48,"tag":104,"props":827,"children":828},{},[829],{"type":54,"value":830},"Infrequent (30+ days)",{"type":48,"tag":104,"props":832,"children":833},{},[834],{"type":54,"value":835},"Lower storage, higher access",{"type":48,"tag":72,"props":837,"children":838},{},[839,844,849],{"type":48,"tag":104,"props":840,"children":841},{},[842],{"type":54,"value":843},"Cold",{"type":48,"tag":104,"props":845,"children":846},{},[847],{"type":54,"value":848},"Rare (90+ days)",{"type":48,"tag":104,"props":850,"children":851},{},[852],{"type":54,"value":853},"Lower still",{"type":48,"tag":72,"props":855,"children":856},{},[857,862,867],{"type":48,"tag":104,"props":858,"children":859},{},[860],{"type":54,"value":861},"Archive",{"type":48,"tag":104,"props":863,"children":864},{},[865],{"type":54,"value":866},"Rarely (180+ days)",{"type":48,"tag":104,"props":868,"children":869},{},[870],{"type":54,"value":871},"Lowest storage, rehydration required",{"type":48,"tag":57,"props":873,"children":875},{"id":874},"redundancy-options",[876],{"type":54,"value":877},"Redundancy Options",{"type":48,"tag":64,"props":879,"children":880},{},[881,901],{"type":48,"tag":68,"props":882,"children":883},{},[884],{"type":48,"tag":72,"props":885,"children":886},{},[887,892,897],{"type":48,"tag":76,"props":888,"children":889},{},[890],{"type":54,"value":891},"Type",{"type":48,"tag":76,"props":893,"children":894},{},[895],{"type":54,"value":896},"Durability",{"type":48,"tag":76,"props":898,"children":899},{},[900],{"type":54,"value":723},{"type":48,"tag":97,"props":902,"children":903},{},[904,922,940,958],{"type":48,"tag":72,"props":905,"children":906},{},[907,912,917],{"type":48,"tag":104,"props":908,"children":909},{},[910],{"type":54,"value":911},"LRS",{"type":48,"tag":104,"props":913,"children":914},{},[915],{"type":54,"value":916},"11 nines",{"type":48,"tag":104,"props":918,"children":919},{},[920],{"type":54,"value":921},"Dev\u002Ftest, recreatable data",{"type":48,"tag":72,"props":923,"children":924},{},[925,930,935],{"type":48,"tag":104,"props":926,"children":927},{},[928],{"type":54,"value":929},"ZRS",{"type":48,"tag":104,"props":931,"children":932},{},[933],{"type":54,"value":934},"12 nines",{"type":48,"tag":104,"props":936,"children":937},{},[938],{"type":54,"value":939},"Regional high availability",{"type":48,"tag":72,"props":941,"children":942},{},[943,948,953],{"type":48,"tag":104,"props":944,"children":945},{},[946],{"type":54,"value":947},"GRS",{"type":48,"tag":104,"props":949,"children":950},{},[951],{"type":54,"value":952},"16 nines",{"type":48,"tag":104,"props":954,"children":955},{},[956],{"type":54,"value":957},"Disaster recovery",{"type":48,"tag":72,"props":959,"children":960},{},[961,966,970],{"type":48,"tag":104,"props":962,"children":963},{},[964],{"type":54,"value":965},"GZRS",{"type":48,"tag":104,"props":967,"children":968},{},[969],{"type":54,"value":952},{"type":48,"tag":104,"props":971,"children":972},{},[973],{"type":54,"value":974},"Best durability",{"type":48,"tag":57,"props":976,"children":978},{"id":977},"service-details",[979],{"type":54,"value":980},"Service Details",{"type":48,"tag":245,"props":982,"children":983},{},[984],{"type":54,"value":985},"For deep documentation on specific services:",{"type":48,"tag":251,"props":987,"children":988},{},[989,1003,1015],{"type":48,"tag":255,"props":990,"children":991},{},[992,994],{"type":54,"value":993},"Blob storage patterns and lifecycle -> ",{"type":48,"tag":995,"props":996,"children":1000},"a",{"href":997,"rel":998},"https:\u002F\u002Flearn.microsoft.com\u002Fazure\u002Fstorage\u002Fblobs\u002Fstorage-blobs-overview",[999],"nofollow",[1001],{"type":54,"value":1002},"Blob Storage documentation",{"type":48,"tag":255,"props":1004,"children":1005},{},[1006,1008],{"type":54,"value":1007},"File shares and Azure File Sync -> ",{"type":48,"tag":995,"props":1009,"children":1012},{"href":1010,"rel":1011},"https:\u002F\u002Flearn.microsoft.com\u002Fazure\u002Fstorage\u002Ffiles\u002Fstorage-files-introduction",[999],[1013],{"type":54,"value":1014},"Azure Files documentation",{"type":48,"tag":255,"props":1016,"children":1017},{},[1018,1020],{"type":54,"value":1019},"Queue patterns and poison handling -> ",{"type":48,"tag":995,"props":1021,"children":1024},{"href":1022,"rel":1023},"https:\u002F\u002Flearn.microsoft.com\u002Fazure\u002Fstorage\u002Fqueues\u002Fstorage-queues-introduction",[999],[1025],{"type":54,"value":1026},"Queue Storage documentation",{"type":48,"tag":57,"props":1028,"children":1030},{"id":1029},"sdk-quick-references",[1031],{"type":54,"value":1032},"SDK Quick References",{"type":48,"tag":245,"props":1034,"children":1035},{},[1036],{"type":54,"value":1037},"For building applications with Azure Storage SDKs, see the condensed guides:",{"type":48,"tag":251,"props":1039,"children":1040},{},[1041,1078,1097,1116,1129],{"type":48,"tag":255,"props":1042,"children":1043},{},[1044,1048,1050,1056,1058,1064,1065,1071,1072],{"type":48,"tag":345,"props":1045,"children":1046},{},[1047],{"type":54,"value":108},{"type":54,"value":1049},": ",{"type":48,"tag":995,"props":1051,"children":1053},{"href":1052},"references\u002Fsdk\u002Fazure-storage-blob-py.md",[1054],{"type":54,"value":1055},"Python",{"type":54,"value":1057}," | ",{"type":48,"tag":995,"props":1059,"children":1061},{"href":1060},"references\u002Fsdk\u002Fazure-storage-blob-ts.md",[1062],{"type":54,"value":1063},"TypeScript",{"type":54,"value":1057},{"type":48,"tag":995,"props":1066,"children":1068},{"href":1067},"references\u002Fsdk\u002Fazure-storage-blob-java.md",[1069],{"type":54,"value":1070},"Java",{"type":54,"value":1057},{"type":48,"tag":995,"props":1073,"children":1075},{"href":1074},"references\u002Fsdk\u002Fazure-storage-blob-rust.md",[1076],{"type":54,"value":1077},"Rust",{"type":48,"tag":255,"props":1079,"children":1080},{},[1081,1085,1086,1091,1092],{"type":48,"tag":345,"props":1082,"children":1083},{},[1084],{"type":54,"value":167},{"type":54,"value":1049},{"type":48,"tag":995,"props":1087,"children":1089},{"href":1088},"references\u002Fsdk\u002Fazure-storage-queue-py.md",[1090],{"type":54,"value":1055},{"type":54,"value":1057},{"type":48,"tag":995,"props":1093,"children":1095},{"href":1094},"references\u002Fsdk\u002Fazure-storage-queue-ts.md",[1096],{"type":54,"value":1063},{"type":48,"tag":255,"props":1098,"children":1099},{},[1100,1104,1105,1110,1111],{"type":48,"tag":345,"props":1101,"children":1102},{},[1103],{"type":54,"value":140},{"type":54,"value":1049},{"type":48,"tag":995,"props":1106,"children":1108},{"href":1107},"references\u002Fsdk\u002Fazure-storage-file-share-py.md",[1109],{"type":54,"value":1055},{"type":54,"value":1057},{"type":48,"tag":995,"props":1112,"children":1114},{"href":1113},"references\u002Fsdk\u002Fazure-storage-file-share-ts.md",[1115],{"type":54,"value":1063},{"type":48,"tag":255,"props":1117,"children":1118},{},[1119,1123,1124],{"type":48,"tag":345,"props":1120,"children":1121},{},[1122],{"type":54,"value":219},{"type":54,"value":1049},{"type":48,"tag":995,"props":1125,"children":1127},{"href":1126},"references\u002Fsdk\u002Fazure-storage-file-datalake-py.md",[1128],{"type":54,"value":1055},{"type":48,"tag":255,"props":1130,"children":1131},{},[1132,1137,1138,1143,1144],{"type":48,"tag":345,"props":1133,"children":1134},{},[1135],{"type":54,"value":1136},"Tables",{"type":54,"value":1049},{"type":48,"tag":995,"props":1139,"children":1141},{"href":1140},"references\u002Fsdk\u002Fazure-data-tables-py.md",[1142],{"type":54,"value":1055},{"type":54,"value":1057},{"type":48,"tag":995,"props":1145,"children":1147},{"href":1146},"references\u002Fsdk\u002Fazure-data-tables-java.md",[1148],{"type":54,"value":1070},{"type":48,"tag":245,"props":1150,"children":1151},{},[1152,1154,1160],{"type":54,"value":1153},"For full package listing across all languages, see ",{"type":48,"tag":995,"props":1155,"children":1157},{"href":1156},"references\u002Fsdk-usage.md",[1158],{"type":54,"value":1159},"SDK Usage Guide",{"type":54,"value":367},{"type":48,"tag":57,"props":1162,"children":1164},{"id":1163},"azure-sdks",[1165],{"type":54,"value":1166},"Azure SDKs",{"type":48,"tag":245,"props":1168,"children":1169},{},[1170,1172,1176],{"type":54,"value":1171},"For building applications that interact with Azure Storage programmatically, Azure provides SDK packages in multiple languages (.NET, Java, JavaScript, Python, Go, Rust). See ",{"type":48,"tag":995,"props":1173,"children":1174},{"href":1156},[1175],{"type":54,"value":1159},{"type":54,"value":1177}," for package names, installation commands, and quick start examples.",{"type":48,"tag":1179,"props":1180,"children":1181},"style",{},[1182],{"type":54,"value":1183},"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":1185,"total":1370},[1186,1208,1227,1247,1262,1278,1289,1302,1317,1332,1346,1358],{"slug":1187,"name":1187,"fn":1188,"description":1189,"org":1190,"tags":1191,"stars":1205,"repoUrl":1206,"updatedAt":1207},"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},[1192,1195,1198,1199,1202],{"name":1193,"slug":1194,"type":15},"Engineering","engineering",{"name":1196,"slug":1197,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":1200,"slug":1201,"type":15},"Project Management","project-management",{"name":1203,"slug":1204,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":1209,"name":1209,"fn":1210,"description":1211,"org":1212,"tags":1213,"stars":1224,"repoUrl":1225,"updatedAt":1226},"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},[1214,1217,1220,1221],{"name":1215,"slug":1216,"type":15},".NET","net",{"name":1218,"slug":1219,"type":15},"Agents","agents",{"name":13,"slug":14,"type":15},{"name":1222,"slug":1223,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":1228,"name":1228,"fn":1229,"description":1230,"org":1231,"tags":1232,"stars":1224,"repoUrl":1225,"updatedAt":1246},"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},[1233,1236,1237,1240,1242,1243],{"name":1234,"slug":1235,"type":15},"Analytics","analytics",{"name":13,"slug":14,"type":15},{"name":1238,"slug":1239,"type":15},"Data Analysis","data-analysis",{"name":1070,"slug":1241,"type":15},"java",{"name":9,"slug":8,"type":15},{"name":1244,"slug":1245,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":1248,"name":1248,"fn":1249,"description":1250,"org":1251,"tags":1252,"stars":1224,"repoUrl":1225,"updatedAt":1261},"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},[1253,1256,1257,1258],{"name":1254,"slug":1255,"type":15},"AI Infrastructure","ai-infrastructure",{"name":13,"slug":14,"type":15},{"name":1070,"slug":1241,"type":15},{"name":1259,"slug":1260,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":1263,"name":1263,"fn":1264,"description":1265,"org":1266,"tags":1267,"stars":1224,"repoUrl":1225,"updatedAt":1277},"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},[1268,1269,1272,1273,1274,1276],{"name":13,"slug":14,"type":15},{"name":1270,"slug":1271,"type":15},"Compliance","compliance",{"name":1222,"slug":1223,"type":15},{"name":9,"slug":8,"type":15},{"name":1055,"slug":1275,"type":15},"python",{"name":1259,"slug":1260,"type":15},"2026-07-18T05:14:23.017504",{"slug":1279,"name":1279,"fn":1280,"description":1281,"org":1282,"tags":1283,"stars":1224,"repoUrl":1225,"updatedAt":1288},"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},[1284,1285,1286,1287],{"name":1234,"slug":1235,"type":15},{"name":13,"slug":14,"type":15},{"name":1222,"slug":1223,"type":15},{"name":1055,"slug":1275,"type":15},"2026-07-31T05:54:29.068751",{"slug":1290,"name":1290,"fn":1291,"description":1292,"org":1293,"tags":1294,"stars":1224,"repoUrl":1225,"updatedAt":1301},"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},[1295,1298,1299,1300],{"name":1296,"slug":1297,"type":15},"API Development","api-development",{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1055,"slug":1275,"type":15},"2026-07-18T05:14:16.988376",{"slug":1303,"name":1303,"fn":1304,"description":1305,"org":1306,"tags":1307,"stars":1224,"repoUrl":1225,"updatedAt":1316},"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},[1308,1309,1312,1315],{"name":13,"slug":14,"type":15},{"name":1310,"slug":1311,"type":15},"Computer Vision","computer-vision",{"name":1313,"slug":1314,"type":15},"Images","images",{"name":1055,"slug":1275,"type":15},"2026-07-18T05:14:18.007737",{"slug":1318,"name":1318,"fn":1319,"description":1320,"org":1321,"tags":1322,"stars":1224,"repoUrl":1225,"updatedAt":1331},"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},[1323,1324,1327,1330],{"name":13,"slug":14,"type":15},{"name":1325,"slug":1326,"type":15},"Configuration","configuration",{"name":1328,"slug":1329,"type":15},"Feature Flags","feature-flags",{"name":1070,"slug":1241,"type":15},"2026-07-03T16:32:01.278468",{"slug":1333,"name":1333,"fn":1334,"description":1335,"org":1336,"tags":1337,"stars":1224,"repoUrl":1225,"updatedAt":1345},"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},[1338,1341,1342,1343],{"name":1339,"slug":1340,"type":15},"Cosmos DB","cosmos-db",{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":1077,"slug":1344,"type":15},"rust","2026-07-31T05:54:27.021432",{"slug":1347,"name":1347,"fn":1334,"description":1348,"org":1349,"tags":1350,"stars":1224,"repoUrl":1225,"updatedAt":1357},"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},[1351,1352,1353,1354,1355],{"name":1339,"slug":1340,"type":15},{"name":23,"slug":24,"type":15},{"name":9,"slug":8,"type":15},{"name":20,"slug":21,"type":15},{"name":1063,"slug":1356,"type":15},"typescript","2026-07-03T16:31:19.368382",{"slug":1359,"name":1359,"fn":1360,"description":1361,"org":1362,"tags":1363,"stars":1224,"repoUrl":1225,"updatedAt":1369},"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},[1364,1365,1366,1367,1368],{"name":13,"slug":14,"type":15},{"name":1339,"slug":1340,"type":15},{"name":23,"slug":24,"type":15},{"name":1070,"slug":1241,"type":15},{"name":20,"slug":21,"type":15},"2026-05-13T06:14:17.582229",267,{"items":1372,"total":1489},[1373,1391,1403,1422,1439,1456,1472],{"slug":1374,"name":1374,"fn":1375,"description":1376,"org":1377,"tags":1378,"stars":28,"repoUrl":29,"updatedAt":1390},"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},[1379,1380,1381,1384,1387],{"name":1254,"slug":1255,"type":15},{"name":13,"slug":14,"type":15},{"name":1382,"slug":1383,"type":15},"Deployment","deployment",{"name":1385,"slug":1386,"type":15},"Kubernetes","kubernetes",{"name":1388,"slug":1389,"type":15},"Runway","runway","2026-07-31T05:56:13.054971",{"slug":1392,"name":1392,"fn":1393,"description":1394,"org":1395,"tags":1396,"stars":28,"repoUrl":29,"updatedAt":1402},"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},[1397,1398,1399],{"name":13,"slug":14,"type":15},{"name":1244,"slug":1245,"type":15},{"name":1400,"slug":1401,"type":15},"Observability","observability","2026-07-31T05:56:09.068625",{"slug":1404,"name":1404,"fn":1405,"description":1406,"org":1407,"tags":1408,"stars":28,"repoUrl":29,"updatedAt":1421},"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},[1409,1410,1411,1412,1415,1418],{"name":1254,"slug":1255,"type":15},{"name":13,"slug":14,"type":15},{"name":1222,"slug":1223,"type":15},{"name":1413,"slug":1414,"type":15},"OpenAI","openai",{"name":1416,"slug":1417,"type":15},"Search","search",{"name":1419,"slug":1420,"type":15},"Speech","speech","2026-07-31T05:56:19.069133",{"slug":1423,"name":1423,"fn":1424,"description":1425,"org":1426,"tags":1427,"stars":28,"repoUrl":29,"updatedAt":1438},"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},[1428,1429,1430,1431,1434,1437],{"name":1254,"slug":1255,"type":15},{"name":1296,"slug":1297,"type":15},{"name":13,"slug":14,"type":15},{"name":1432,"slug":1433,"type":15},"Caching","caching",{"name":1435,"slug":1436,"type":15},"Governance","governance",{"name":1259,"slug":1260,"type":15},"2026-07-31T05:56:23.05242",{"slug":1440,"name":1440,"fn":1441,"description":1442,"org":1443,"tags":1444,"stars":28,"repoUrl":29,"updatedAt":1455},"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},[1445,1448,1449,1452],{"name":1446,"slug":1447,"type":15},"AWS","aws",{"name":13,"slug":14,"type":15},{"name":1450,"slug":1451,"type":15},"Google Cloud","google-cloud",{"name":1453,"slug":1454,"type":15},"Migration","migration","2026-07-31T05:56:29.049979",{"slug":1457,"name":1457,"fn":1458,"description":1459,"org":1460,"tags":1461,"stars":28,"repoUrl":29,"updatedAt":1471},"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},[1462,1465,1466,1467,1470],{"name":1463,"slug":1464,"type":15},"Audit","audit",{"name":13,"slug":14,"type":15},{"name":1270,"slug":1271,"type":15},{"name":1468,"slug":1469,"type":15},"Regulatory Compliance","regulatory-compliance",{"name":1259,"slug":1260,"type":15},"2026-07-31T05:56:11.06797",{"slug":1473,"name":1473,"fn":1474,"description":1475,"org":1476,"tags":1477,"stars":28,"repoUrl":29,"updatedAt":1488},"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},[1478,1479,1480,1483,1485],{"name":1254,"slug":1255,"type":15},{"name":13,"slug":14,"type":15},{"name":1481,"slug":1482,"type":15},"Cost Optimization","cost-optimization",{"name":728,"slug":1484,"type":15},"performance",{"name":1486,"slug":1487,"type":15},"Virtual Machines","virtual-machines","2026-07-31T05:56:16.042469",28]