Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
Cluster.cs2.08 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.Core.Models.Identity; namespace AzureMcp.Redis.Models.ManagedRedis; public class Cluster { /// <summary> Name of the Redis cluster resource. </summary> public string? Name { get; set; } /// <summary> ID of the Azure subscription containing the Redis cluster resource. </summary> public string? SubscriptionId { get; set; } /// <summary> Name of the resource group containing the Redis cluster resource. </summary> public string? ResourceGroupName { get; set; } /// <summary> Azure geo-location where the Redis cluster resource lives. </summary> public string? Location { get; set; } /// <summary> SKU of the Redis cluster resource. </summary> public string? Sku { get; set; } /// <summary> Provisioning status of the Redis cluster resource. </summary> public string? ProvisioningState { get; set; } /// <summary> Current status of the Redis cluster. </summary> public string? ResourceState { get; set; } /// <summary> Version of Redis server supported by the cluster. </summary> public string? RedisVersion { get; set; } /// <summary> DNS host name clients use to connect to the Redis cluster. </summary> public string? HostName { get; set; } /// <summary> Minimum version of TLS supported for client connections to this Redis cluster. </summary> public string? MinimumTlsVersion { get; set; } /// <summary> Resource IDs of private links used for network-isolated client connections to the Redis cluster. </summary> public string[]? PrivateEndpointConnections { get; set; } /// <summary> The availability zones in which the Redis cluster is deployed. </summary> public string[]? Zones { get; set; } /// <summary> System-assigned managed identity of the Redis cluster resource. </summary> public ManagedIdentityInfo? Identity { get; set; } /// <summary> Tags on the Redis cluster resource. </summary> public IDictionary<string, string>? Tags { 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