Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
QuotaOptionDefinitions.cs2.85 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace AzureMcp.Quota.Options; public static class QuotaOptionDefinitions { public static class QuotaCheck { public const string RegionName = "region"; public const string ResourceTypesName = "resource-types"; public static readonly Option<string> Region = new( $"--{RegionName}", "The valid Azure region where the resources will be deployed. E.g. 'eastus', 'westus', etc." ) { IsRequired = true }; public static readonly Option<string> ResourceTypes = new( $"--{ResourceTypesName}", "The valid Azure resource types that are going to be deployed(comma-separated). E.g. 'Microsoft.App/containerApps,Microsoft.Web/sites,Microsoft.CognitiveServices/accounts', etc." ) { IsRequired = true, AllowMultipleArgumentsPerToken = true }; } public static class RegionCheck { public const string ResourceTypesName = "resource-types"; public const string CognitiveServiceModelNameName = "cognitive-service-model-name"; public const string CognitiveServiceModelVersionName = "cognitive-service-model-version"; public const string CognitiveServiceDeploymentSkuNameName = "cognitive-service-deployment-sku-name"; public static readonly Option<string> ResourceTypes = new( $"--{ResourceTypesName}", "Comma-separated list of Azure resource types to check available regions for. The valid Azure resource types. E.g. 'Microsoft.App/containerApps, Microsoft.Web/sites, Microsoft.CognitiveServices/accounts'." ) { IsRequired = true, AllowMultipleArgumentsPerToken = true }; public static readonly Option<string> CognitiveServiceModelName = new( $"--{CognitiveServiceModelNameName}", "Optional model name for cognitive services. Only needed when Microsoft.CognitiveServices is included in resource types." ) { IsRequired = false }; public static readonly Option<string> CognitiveServiceModelVersion = new( $"--{CognitiveServiceModelVersionName}", "Optional model version for cognitive services. Only needed when Microsoft.CognitiveServices is included in resource types." ) { IsRequired = false }; public static readonly Option<string> CognitiveServiceDeploymentSkuName = new( $"--{CognitiveServiceDeploymentSkuNameName}", "Optional deployment SKU name for cognitive services. Only needed when Microsoft.CognitiveServices is included in resource types." ) { IsRequired = false }; } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Azure/azure-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server