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
ModelDeploymentResult.cs•823 B
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
using Azure.ResourceManager.CognitiveServices.Models;
namespace AzureMcp.Foundry.Models;
public record ModelDeploymentResult
{
[JsonPropertyName("hasData")]
public bool HasData { get; init; }
[JsonPropertyName("id")]
public string? Id { get; init; }
[JsonPropertyName("name")]
public string? Name { get; init; }
[JsonPropertyName("type")]
public string? Type { get; init; }
[JsonPropertyName("sku")]
public CognitiveServicesSku? Sku { get; init; }
[JsonPropertyName("tags")]
public IDictionary<string, string>? Tags { get; init; }
[JsonPropertyName("properties")]
public CognitiveServicesAccountDeploymentProperties? Properties { get; init; }
}