New to Claude Skills? Learn how to install them →

microsoft on GitHub

Azure Storage Services

OfficialFree

Manage Azure storage solutions efficiently.

by microsoft1.4k stars on microsoft/azure-skills
1 views
Updated Aug 10, 2026
Get this skill

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 source

1. Install with the skills CLI

npx skills add microsoft/azure-skills/azure-storage --agent claude-code

2. 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 microsoft

Azure Storage Services

Services

ServiceUse WhenMCP ToolsCLI
Blob StorageObjects, files, backups, static contentazure__storageaz storage blob
File SharesSMB file shares, lift-and-shift-az storage file
Queue StorageAsync messaging, task queues-az storage queue
Table StorageNoSQL key-value (consider Cosmos DB)-az storage table
Data LakeBig data analytics, hierarchical namespace-az storage fs

MCP Server (Preferred)

When Azure MCP is enabled:

  • azure__storage with command storage_account_list - List storage accounts
  • azure__storage with command storage_container_list - List containers in account
  • azure__storage with command storage_blob_list - List blobs in container
  • azure__storage with command storage_blob_get - Download blob content
  • azure__storage with command storage_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

TierUse CasePerformance
StandardGeneral purpose, backupMilliseconds
PremiumDatabases, high IOPSSub-millisecond

Blob Access Tiers

TierAccess FrequencyCost
HotFrequentHigher storage, lower access
CoolInfrequent (30+ days)Lower storage, higher access
ColdRare (90+ days)Lower still
ArchiveRarely (180+ days)Lowest storage, rehydration required

Redundancy Options

TypeDurabilityUse Case
LRS11 ninesDev/test, recreatable data
ZRS12 ninesRegional high availability
GRS16 ninesDisaster recovery
GZRS16 ninesBest durability

Service Details

For deep documentation on specific services:

SDK Quick References

For building applications with Azure Storage SDKs, see the condensed guides:

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