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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
using Azure.Messaging.ServiceBus.Administration;
namespace AzureMcp.ServiceBus.Models.Utilities;
public class EntityStatusConverter : JsonConverter<EntityStatus>
{
public override EntityStatus Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
if (reader.TokenType == JsonTokenType.String)
{
return new EntityStatus(reader.GetString());
}
throw new JsonException($"Unexpected token type {reader.TokenType} for EntityStatus.");
}
public override void Write(Utf8JsonWriter writer, EntityStatus value, JsonSerializerOptions options)
{
writer.WriteStringValue(value.ToString());
}
}