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
BaseDirectoryResponse.cs•419 B
namespace NetContextClient.Models;
/// <summary>
/// Response model for the get_base_directory function
/// </summary>
public class BaseDirectoryResponse
{
/// <summary>
/// The current base directory path
/// </summary>
public string BaseDirectory { get; set; } = string.Empty;
/// <summary>
/// Whether the base directory exists
/// </summary>
public bool Exists { get; set; }
}