Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
SqlSku.cs945 B
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System.Text.Json.Serialization; namespace AzureMcp.Sql.Services.Models { /// <summary> An ARM Resource SKU. </summary> internal sealed class SqlSku { /// <summary> The name of the SKU, typically, a letter + Number code, e.g. P3. </summary> public string? Name { get; set; } /// <summary> The tier or edition of the particular SKU, e.g. Basic, Premium. </summary> public string? Tier { get; set; } /// <summary> Size of the particular SKU. </summary> public string? Size { get; set; } /// <summary> If the service has different generations of hardware, for the same SKU, then that can be captured here. </summary> public string? Family { get; set; } /// <summary> Capacity of the particular SKU. </summary> public int? Capacity { get; set; } } }

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