
Azure Storage Services
OfficialFreeManage Azure storage solutions efficiently.
Free · Opens the source repo
What Azure Storage Services does
Azure Storage Services provides comprehensive tools for managing various types of storage solutions within the Azure ecosystem. This skill covers Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake, allowing users to handle object storage, file sharing, asynchronous messaging, NoSQL key-value storage, and big data analytics. It is designed for developers and designers who need to integrate Azure's storage capabilities into their applications or workflows.
With this skill, users can easily navigate Azure's storage access tiers, including hot, cool, cold, and archive, and understand when to use each tier based on their specific needs. The skill also includes lifecycle management capabilities, helping users to efficiently manage data retention and storage costs. By leveraging the Azure MCP (Managed Cloud Platform), users can execute commands to list storage accounts, containers, and blobs, as well as upload and download blob content directly from the command line.
The skill is particularly useful for those working with large datasets or requiring reliable storage solutions for backups and static content. It offers detailed documentation and quick reference guides for various SDKs in multiple programming languages, including Python, TypeScript, Java, and Rust. This ensures that developers can easily find the information they need to implement Azure storage features in their applications.
Overall, Azure Storage Services is an essential tool for anyone looking to utilize Azure's robust storage offerings, providing straightforward access to powerful storage management features and best practices.
When to use it
Use this skill when you need to manage Azure storage services for applications, including handling files, blobs, and queues.
When not to use it
This skill is not suitable for managing SQL databases or Cosmos DB; for those, consider using the azure-prepare skill.
What you can build with it
Managing Blob Storage
Use this skill to upload and download files to and from Azure Blob Storage, making it ideal for handling backups and static content.
Implementing Queue Storage
Leverage the Queue Storage feature to manage asynchronous messaging and task queues within your applications.
Utilizing Data Lake for Analytics
Employ the Data Lake service for big data analytics, enabling you to store and analyze large datasets efficiently.
How to install Azure Storage Services
View source1. Install with the skills CLI
npx skills add microsoft/azure-skills/azure-storage --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by microsoftAzure Storage Services
Services
| Service | Use When | MCP Tools | CLI |
|---|---|---|---|
| Blob Storage | Objects, files, backups, static content | azure__storage | az storage blob |
| File Shares | SMB file shares, lift-and-shift | - | az storage file |
| Queue Storage | Async messaging, task queues | - | az storage queue |
| Table Storage | NoSQL key-value (consider Cosmos DB) | - | az storage table |
| Data Lake | Big data analytics, hierarchical namespace | - | az storage fs |
MCP Server (Preferred)
When Azure MCP is enabled:
azure__storagewith commandstorage_account_list- List storage accountsazure__storagewith commandstorage_container_list- List containers in accountazure__storagewith commandstorage_blob_list- List blobs in containerazure__storagewith commandstorage_blob_get- Download blob contentazure__storagewith commandstorage_blob_put- Upload blob content
If Azure MCP is not enabled: Run /azure:setup or enable via /mcp.
CLI Fallback
# List storage accounts
az storage account list --output table
# List containers
az storage container list --account-name ACCOUNT --output table
# List blobs
az storage blob list --account-name ACCOUNT --container-name CONTAINER --output table
# Download blob
az storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
# Upload blob
az storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
Storage Account Tiers
| Tier | Use Case | Performance |
|---|---|---|
| Standard | General purpose, backup | Milliseconds |
| Premium | Databases, high IOPS | Sub-millisecond |
Blob Access Tiers
| Tier | Access Frequency | Cost |
|---|---|---|
| Hot | Frequent | Higher storage, lower access |
| Cool | Infrequent (30+ days) | Lower storage, higher access |
| Cold | Rare (90+ days) | Lower still |
| Archive | Rarely (180+ days) | Lowest storage, rehydration required |
Redundancy Options
| Type | Durability | Use Case |
|---|---|---|
| LRS | 11 nines | Dev/test, recreatable data |
| ZRS | 12 nines | Regional high availability |
| GRS | 16 nines | Disaster recovery |
| GZRS | 16 nines | Best durability |
Service Details
For deep documentation on specific services:
- Blob storage patterns and lifecycle -> Blob Storage documentation
- File shares and Azure File Sync -> Azure Files documentation
- Queue patterns and poison handling -> Queue Storage documentation
SDK Quick References
For building applications with Azure Storage SDKs, see the condensed guides:
- Blob Storage: Python | TypeScript | Java | Rust
- Queue Storage: Python | TypeScript
- File Shares: Python | TypeScript
- Data Lake: Python
- Tables: Python | Java
For full package listing across all languages, see SDK Usage Guide.
Azure SDKs
For 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 for package names, installation commands, and quick start examples.
Frequently asked questions about Azure Storage Services
Similar skills
WinMD API Search
Easily find and explore Windows desktop APIs.
WebMCPify
Transform any web app into an agent-ready platform.
Phoenix Tracing
Instrument LLM applications with OpenInference tracing.
Foundry Hosted Agent CopilotKit
Guidance for developing agentic web apps on Azure.
Power Automate Foundation
Connect AI agents to Power Automate seamlessly.
Power Automate Flow Builder
Efficiently build and deploy Power Automate flows programmatically.
