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
ResourceHealthOptionDefinitions.cs•516 B
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace AzureMcp.ResourceHealth;
public static class ResourceHealthOptionDefinitions
{
public const string ResourceIdName = "resourceId";
public static readonly Option<string> ResourceId = new(
$"--{ResourceIdName}",
"The Azure resource ID to get health status for (e.g., /subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Compute/virtualMachines/{vm})."
)
{
IsRequired = true
};
}