We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/willibrandon/NetContextServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ThinkResponse.cs•547 B
namespace NetContextClient.Models;
/// <summary>
/// Response model for the think tool.
/// </summary>
public class ThinkResponse
{
/// <summary>
/// The thought that was processed.
/// </summary>
public string Thought { get; set; } = string.Empty;
/// <summary>
/// A confirmation message about the thought processing.
/// </summary>
public string Message { get; set; } = string.Empty;
/// <summary>
/// Error message if something went wrong.
/// </summary>
public string? Error { get; set; }
}