// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using AzureMcp.CloudArchitect.Options;
namespace AzureMcp.CloudArchitect.Models;
/// <summary>
/// Response object for the cloud architect design command.
/// </summary>
public class CloudArchitectResponseObject
{
public string DisplayText { get; set; } = string.Empty;
public string DisplayThought { get; set; } = string.Empty;
public string DisplayHint { get; set; } = string.Empty;
public int QuestionNumber { get; set; }
public int TotalQuestions { get; set; }
public bool NextQuestionNeeded { get; set; }
public ArchitectureDesignToolState State { get; set; } = new();
}
/// <summary>
/// Complete response for the cloud architect design command including both response object and design architecture text.
/// </summary>
public class CloudArchitectDesignResponse
{
public string DesignArchitecture { get; set; } = string.Empty;
public CloudArchitectResponseObject ResponseObject { get; set; } = new();
}
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