From azure-mcp
Use this skill for Azure cost, pricing, capacity, and inventory work through the azure-mcp connector — retail pricing lookups, subscription quota and usage-limit checks, and listing/inspecting subscriptions and resource groups. All read-only.
How this skill is triggered — by the user, by Claude, or both
Slash command
/azure-mcp:cost-and-capacityWhen to use
When estimating Azure cost, checking quota headroom before scaling a deployment, or taking inventory of subscriptions and resource groups. Use when: azure pricing, azure cost estimate, retail price azure, azure quota, azure usage limits, quota check, azure subscriptions, resource groups, azure inventory, or pre-deployment check.
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill covers the cost, capacity, and inventory side of the `azure-mcp` connector: the `pricing`, `quota`, `subscription`, and `group` namespaces. All four are **read-only** — they answer "what would this cost", "do we have headroom", and "what exists", never "provision this".
This skill covers the cost, capacity, and inventory side of the azure-mcp connector: the pricing, quota, subscription, and group namespaces. All four are read-only — they answer "what would this cost", "do we have headroom", and "what exists", never "provision this".
Tool names follow the Azure MCP Server's namespace convention (azmcp / azure_mcp prefixes, grouped under pricing, quota, subscription, group). Invoke them by capability.
subscription — subscription inventoryLists the Azure subscriptions the connected service principal can see, with their IDs, display names, and state (Enabled, Disabled, Warned). This is almost always the first call in any workflow — nearly every other namespace needs a subscription ID for scope.
group — resource-group inventoryLists and inspects resource groups within a subscription: name, location, tags, and provisioning state. Use it to map the shape of an environment, find resources by tag, or pick the right scope for a pricing or quota question.
pricing — Azure retail pricingLooks up Azure retail prices from the public Azure Retail Prices API — meter rates by service, SKU, region, and currency. This gives list pricing, not the customer's negotiated or EA/CSP pricing, and not actual billed consumption. Treat its output as an estimate baseline.
quota — quota & usage limitsReports subscription quotas and current usage for a resource provider and region — e.g. vCPU quota for a VM family, public IP count, network interface count. Each entry shows the limit, current usage, and therefore the remaining headroom.
Before someone scales a deployment or stands up new resources, confirm there is headroom:
subscription — resolve the target subscription ID.quota — pull quota and current usage for the relevant provider and region (e.g. Microsoft.Compute vCPUs in eastus).limit - usage. If headroom is insufficient, report the exact shortfall and the region — a quota increase is a separate, write/support action outside this connector.Catching this before deployment avoids a half-failed rollout when Azure rejects the request at limit.
When asked "what would X cost":
subscription / group — establish scope and region (region materially changes price).pricing — look up the retail meter rate for each SKU involved (compute size, storage tier, bandwidth).For what a customer actually spent, that is consumption/billing data — the pricing namespace does not provide it. Cost-saving opportunities on existing spend come from Azure Advisor's Cost recommendations (see the observability skill).
For an environment audit or onboarding discovery:
subscription — enumerate all visible subscriptions; flag any Disabled or Warned.group — for each subscription, list resource groups with their locations and tags.Run quota across the key providers (Microsoft.Compute, Microsoft.Network, Microsoft.Storage) for the regions a customer uses, and produce a headroom table. Quotas above ~80% usage are worth a proactive quota-increase request before they block growth.
pricing returns public retail rates only. It is an estimation baseline, never the customer's billed amount.subscription only shows subscriptions where the service principal holds a role assignment. A "missing" subscription usually means a missing Reader assignment, not a deleted subscription.npx claudepluginhub wyre-technology/msp-claude-plugins --plugin azure-mcpChecks and manages Azure quotas and usage across subscriptions for deployment planning, capacity validation, and region selection.
Helps estimate and calculate Azure resource costs. Use this skill when users ask about Azure pricing, cost estimation, resource sizing costs, comparing pricing tiers, budgeting for Azure deployments, or understanding Azure billing. Triggers include questions like "how much will this cost in Azure", "estimate Azure costs", "compare Azure pricing", "budget for Azure resources".
Guides Azure Quotas development: requesting per-region Storage account quota increases, checking limits, and filing Azure support requests for quota management.