mcpbeat

Azure Usage

fcakyon/azure-usage

This skill should be used when user asks to "query Azure resources", "list storage accounts", "manage Key Vault secrets", "work with Cosmos DB", "check AKS clusters", "use Azure MCP", or interact with any Azure service.

460 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
955
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/fcakyon/claude-codex-settings --skill azure-usage

The instruction itself

10 sections, as written by the author

Azure MCP Best Practices

Tool Selection

| Task | Tool | Example |

| -------------------- | ---------------------- | ----------------------------------- |

| List resources | mcp__azure__*_list | Storage accounts, Key Vault secrets |

| Get resource details | mcp__azure__*_get | Container details, database info |

| Create resources | mcp__azure__*_create | New secrets, storage containers |

| Query data | mcp__azure__*_query | Log Analytics, Cosmos DB |

Common Operations

Storage

  • storage_accounts_list - List storage accounts
  • storage_blobs_list - List blobs in container
  • storage_blobs_upload - Upload file to blob

Key Vault

  • keyvault_secrets_list - List secrets
  • keyvault_secrets_get - Get secret value
  • keyvault_secrets_set - Create/update secret

Cosmos DB

  • cosmosdb_databases_list - List databases
  • cosmosdb_containers_list - List containers
  • cosmosdb_query - Query documents

AKS

  • aks_clusters_list - List AKS clusters
  • aks_nodepools_list - List node pools

Monitor

  • monitor_logs_query - Query Log Analytics

Authentication

Azure MCP uses Azure Identity SDK. Authenticate via:

  • az login (Azure CLI - recommended)
  • VS Code Azure extension
  • Environment variables (service principal)

Reference

How to use it

Copy the folder

Take fcakyon/azure-usage from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.