.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/azure-skills/azure-storage
home/skills/microsoft/azure-skills/azure-storage
microsoft avatar

azure-storage

bymicrosoft· 555 skills

Installs

484k

Stars

1.3k

Forks

219

Category

Cloud & Infrastructure

View on GitHub

TL;DR

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).

How to install azure-storage?

microsoft/azure-skills/azure-storage
$npx -y skills add microsoft/azure-skills --skill azure-storage

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/microsoft/azure-skills" --skill "microsoft/azure-skills/azure-storage"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/microsoft/azure-skills" that are relevant to the current task. Run `npx skills add "https://github.com/microsoft/azure-skills"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Azure Storage Services
2 
3## Services
4 
5| Service | Use When | MCP Tools | CLI |
6|---------|----------|-----------|-----|
7| Blob Storage | Objects, files, backups, static content | `azure__storage` | `az storage blob` |
8| File Shares | SMB file shares, lift-and-shift | - | `az storage file` |
9| Queue Storage | Async messaging, task queues | - | `az storage queue` |
10| Table Storage | NoSQL key-value (consider Cosmos DB) | - | `az storage table` |
11| Data Lake | Big data analytics, hierarchical namespace | - | `az storage fs` |
12 
13## MCP Server (Preferred)
14 
15When Azure MCP is enabled:
16 
17- `azure__storage` with command `storage_account_list` - List storage accounts
18- `azure__storage` with command `storage_container_list` - List containers in account
19- `azure__storage` with command `storage_blob_list` - List blobs in container
20- `azure__storage` with command `storage_blob_get` - Download blob content
21- `azure__storage` with command `storage_blob_put` - Upload blob content
22 
23**If Azure MCP is not enabled:** Run `/azure:setup` or enable via `/mcp`.
24 
25## CLI Fallback
26 
27```bash
28# List storage accounts
29az storage account list --output table
30 
31# List containers
32az storage container list --account-name ACCOUNT --output table
33 
34# List blobs
35az storage blob list --account-name ACCOUNT --container-name CONTAINER --output table
36 
37# Download blob
38az storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
39 
40# Upload blob
41az storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
42```
43 
44## Storage Account Tiers
45 
46| Tier | Use Case | Performance |
47|------|----------|-------------|
48| Standard | General purpose, backup | Milliseconds |
49| Premium | Databases, high IOPS | Sub-millisecond |
50 
51## Blob Access Tiers
52 
53| Tier | Access Frequency | Cost |
54|------|-----------------|------|
55| Hot | Frequent | Higher storage, lower access |
56| Cool | Infrequent (30+ days) | Lower storage, higher access |
57| Cold | Rare (90+ days) | Lower still |
58| Archive | Rarely (180+ days) | Lowest storage, rehydration required |
59 
60## Redundancy Options
61 
62| Type | Durability | Use Case |
63|------|------------|----------|
64| LRS | 11 nines | Dev/test, recreatable data |
65| ZRS | 12 nines | Regional high availability |
66| GRS | 16 nines | Disaster recovery |
67| GZRS | 16 nines | Best durability |
68 
69## Service Details
70 
71For deep documentation on specific services:
72 
73- Blob storage patterns and lifecycle -> [Blob Storage documentation](https://learn.microsoft.com/azure/storage/blobs/storage-blobs-overview)
74- File shares and Azure File Sync -> [Azure Files documentation](https://learn.microsoft.com/azure/storage/files/storage-files-introduction)
75- Queue patterns and poison handling -> [Queue Storage documentation](https://learn.microsoft.com/azure/storage/queues/storage-queues-introduction)
76 
77## SDK Quick References
78 
79For building applications with Azure Storage SDKs, see the condensed guides:
80 
81- **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)
82- **Queue Storage**: [Python](references/sdk/azure-storage-queue-py.md) | [TypeScript](references/sdk/azure-storage-queue-ts.md)
83- **File Shares**: [Python](references/sdk/azure-storage-file-share-py.md) | [TypeScript](references/sdk/azure-storage-file-share-ts.md)
84- **Data Lake**: [Python](references/sdk/azure-storage-file-datalake-py.md)
85- **Tables**: [Python](references/sdk/azure-data-tables-py.md) | [Java](references/sdk/azure-data-tables-java.md)
86 
87For full package listing across all languages, see [SDK Usage Guide](references/sdk-usage.md).
88 
89## Azure SDKs
90 
91For 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.

Security

Passed

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykpass
  • ZeroLeakspass

Preview

microsoft/azure-skillsmicrosoft/azure-skills

$ npx -y skills add microsoft/azure-skills --skill azure-storage

▸ installing to .claude/skills…

✓ azure-storage ready

Repomicrosoft/azure-skills
TypeSkills
CategoryCloud & Infrastructure
ForOpsArchitect
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. microsoft avatarazure-resource-lookupList, find, and show Azure resources across subscriptions or resource groups.SkillsJul 2026484k1.3k
  2. microsoft avatarazure-resource-visualizerAnalyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources.SkillsJul 2026483k1.3k
  3. microsoft avatarazure-computeAzure VM/VMSS router. WHEN: create / provision / deploy / spin-up VM, recommend VM size, compare VM pricing, VMSS, scale set, autoscale, burstable, lightweight…SkillsJul 2026428k1.3k
  4. microsoft avatarazure-quotasCheck/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection.SkillsJul 2026354k1.3k
  5. microsoft avatarazure-upgradeAssess and upgrade Azure workloads between plans, tiers, or SKUs, or modernize Azure SDK dependencies in source code.SkillsJul 2026346k1.3k
  6. microsoft avatarazure-enterprise-infra-plannerArchitect and provision enterprise Azure infrastructure from workload descriptions.SkillsJul 2026320k1.3k