Skip to content
MCP-Bridge
Cloud Infrastructure

Azure Reservation Claude Desktop Config

Add the Azure Reservation MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. 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_KEY

Replace your_azure_reservation_api_key with your actual azure reservation api key

Endpoints

GET/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/autoQuotaIncrease

For the specified subscription, gets the Auto Quota Increase enrollment status.

PUT/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/autoQuotaIncrease

For the specified subscription, sets the Auto Quota Increase enrollment properties.

GET/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimits

Gets the current quota limit and usages for all the resources by the resource provider at the specified location.

GET/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.

PUT/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.

PATCH/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.

GET/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimitsRequests

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

GET/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.