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
VirtualDesktopJsonContext.cs•1.01 KiB
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
using AzureMcp.Areas.VirtualDesktop.Commands.Hostpool;
using AzureMcp.Areas.VirtualDesktop.Commands.SessionHost;
using AzureMcp.Areas.VirtualDesktop.Models;
namespace AzureMcp.Areas.VirtualDesktop.Commands;
[JsonSerializable(typeof(HostpoolListCommand.HostPoolListCommandResult))]
[JsonSerializable(typeof(SessionHostListCommand.SessionHostListCommandResult))]
[JsonSerializable(typeof(SessionHostUserSessionListCommand.SessionHostUserSessionListCommandResult))]
[JsonSerializable(typeof(HostPool))]
[JsonSerializable(typeof(Models.SessionHost))]
[JsonSerializable(typeof(UserSession))]
[JsonSerializable(typeof(List<Models.SessionHost>))]
[JsonSerializable(typeof(List<UserSession>))]
[JsonSourceGenerationOptions(PropertyNamingPolicy = JsonKnownNamingPolicy.CamelCase, DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
internal sealed partial class VirtualDesktopJsonContext : JsonSerializerContext
{
}