Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
Cluster.cs2.43 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace AzureMcp.Aks.Models; public class Cluster { /// <summary> Name of the AKS cluster resource. </summary> public string? Name { get; set; } /// <summary> ID of the Azure subscription containing the AKS cluster resource. </summary> public string? SubscriptionId { get; set; } /// <summary> Name of the resource group containing the AKS cluster resource. </summary> public string? ResourceGroupName { get; set; } /// <summary> Azure geo-location where the AKS cluster resource lives. </summary> public string? Location { get; set; } /// <summary> Kubernetes version of the AKS cluster. </summary> public string? KubernetesVersion { get; set; } /// <summary> Provisioning status of the AKS cluster resource. </summary> public string? ProvisioningState { get; set; } /// <summary> Current power state of the AKS cluster. </summary> public string? PowerState { get; set; } /// <summary> DNS prefix specified when creating the managed cluster. </summary> public string? DnsPrefix { get; set; } /// <summary> FQDN for the master pool. </summary> public string? Fqdn { get; set; } /// <summary> Number of nodes in the default agent pool. </summary> public int? NodeCount { get; set; } /// <summary> VM size of the agent nodes. </summary> public string? NodeVmSize { get; set; } /// <summary> Type of managed identity used by this managed cluster. </summary> public string? IdentityType { get; set; } /// <summary> Whether RBAC is enabled. </summary> public bool? EnableRbac { get; set; } /// <summary> Network plugin used for building the Kubernetes network. </summary> public string? NetworkPlugin { get; set; } /// <summary> Network policy used for building the Kubernetes network. </summary> public string? NetworkPolicy { get; set; } /// <summary> Service CIDR for the Kubernetes service. </summary> public string? ServiceCidr { get; set; } /// <summary> DNS service IP address for the Kubernetes service. </summary> public string? DnsServiceIP { get; set; } /// <summary> SKU tier of this managed cluster. </summary> public string? SkuTier { get; set; } /// <summary> Resource tags associated with the cluster. </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