Azure Reservation Claude Desktop Config
Add the Azure Reservation MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"azure-com-reservations-quota": {
"command": "npx",
"args": [
"-y",
"@mcp/azure-com-reservations-quota"
],
"env": {
"AZURE_RESERVATION_API_KEY": "your_azure_reservation_api_key"
}
}
}
}Environment Variables
AZURE_RESERVATION_API_KEYReplace your_azure_reservation_api_key with your actual azure reservation api key
Endpoints
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/autoQuotaIncreaseFor the specified subscription, gets the Auto Quota Increase enrollment status.
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/autoQuotaIncreaseFor the specified subscription, sets the Auto Quota Increase enrollment properties.
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimitsGets the current quota limit and usages for all the resources by the resource provider at the specified location.
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimits/{resourceName}Gets the current quota limit and usages for the resource provider for the specified location for the specific resource in the parameter.
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimits/{resourceName}Submits a Quota Request for a resource provider at the specified location for the specific resource in the parameter.
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimits/{resourceName}Submits a Quota Request for a resource provider at the specified location for the specific resource in the parameter.
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimitsRequestsFor the specified location and resource Provider, gets the quota requests under the subscription over the time period of one year ago from now to one year back, based on the filter specified.
/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimitsRequests/{id}Gets the Quota request status by requestId, for the specified resource provider at specified location.