Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Manage Azure Storage services including Blob, File Shares, Queues, Tables, and Data Lake
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: azure-storage3description: "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)."4license: MIT5metadata:6author: Microsoft7version: "1.1.2"8---910# Azure Storage Services1112## Services1314| Service | Use When | MCP Tools | CLI |15|---------|----------|-----------|-----|16| Blob Storage | Objects, files, backups, static content | `azure__storage` | `az storage blob` |17| File Shares | SMB file shares, lift-and-shift | - | `az storage file` |18| Queue Storage | Async messaging, task queues | - | `az storage queue` |19| Table Storage | NoSQL key-value (consider Cosmos DB) | - | `az storage table` |20| Data Lake | Big data analytics, hierarchical namespace | - | `az storage fs` |2122## MCP Server (Preferred)2324When Azure MCP is enabled:2526- `azure__storage` with command `storage_account_list` - List storage accounts27- `azure__storage` with command `storage_container_list` - List containers in account28- `azure__storage` with command `storage_blob_list` - List blobs in container29- `azure__storage` with command `storage_blob_get` - Download blob content30- `azure__storage` with command `storage_blob_put` - Upload blob content3132**If Azure MCP is not enabled:** Run `/azure:setup` or enable via `/mcp`.3334## CLI Fallback3536```bash37# List storage accounts38az storage account list --output table3940# List containers41az storage container list --account-name ACCOUNT --output table4243# List blobs44az storage blob list --account-name ACCOUNT --container-name CONTAINER --output table4546# Download blob47az storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH4849# Upload blob50az storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH51```5253## Storage Account Tiers5455| Tier | Use Case | Performance |56|------|----------|-------------|57| Standard | General purpose, backup | Milliseconds |58| Premium | Databases, high IOPS | Sub-millisecond |5960## Blob Access Tiers6162| Tier | Access Frequency | Cost |63|------|-----------------|------|64| Hot | Frequent | Higher storage, lower access |65| Cool | Infrequent (30+ days) | Lower storage, higher access |66| Cold | Rare (90+ days) | Lower still |67| Archive | Rarely (180+ days) | Lowest storage, rehydration required |6869## Redundancy Options7071| Type | Durability | Use Case |72|------|------------|----------|73| LRS | 11 nines | Dev/test, recreatable data |74| ZRS | 12 nines | Regional high availability |75| GRS | 16 nines | Disaster recovery |76| GZRS | 16 nines | Best durability |7778## Service Details7980For deep documentation on specific services:8182- Blob storage patterns and lifecycle -> [Blob Storage documentation](https://learn.microsoft.com/azure/storage/blobs/storage-blobs-overview)83- File shares and Azure File Sync -> [Azure Files documentation](https://learn.microsoft.com/azure/storage/files/storage-files-introduction)84- Queue patterns and poison handling -> [Queue Storage documentation](https://learn.microsoft.com/azure/storage/queues/storage-queues-introduction)8586## SDK Quick References8788For building applications with Azure Storage SDKs, see the condensed guides:8990- **Blob Storage**: [Python](references/sdk/azure-storage-blob-py.md) | [TypeScript](references/sdk/azure-storage-blob-ts.md) | [Java](references/sdk/azure-storage-blob-java.md) | [Rust](references/sdk/azure-storage-blob-rust.md)91- **Queue Storage**: [Python](references/sdk/azure-storage-queue-py.md) | [TypeScript](references/sdk/azure-storage-queue-ts.md)92- **File Shares**: [Python](references/sdk/azure-storage-file-share-py.md) | [TypeScript](references/sdk/azure-storage-file-share-ts.md)93- **Data Lake**: [Python](references/sdk/azure-storage-file-datalake-py.md)94- **Tables**: [Python](references/sdk/azure-data-tables-py.md) | [Java](references/sdk/azure-data-tables-java.md)9596For full package listing across all languages, see [SDK Usage Guide](references/sdk-usage.md).9798## Azure SDKs99100For 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/sdk-usage.md) for package names, installation commands, and quick start examples.101