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
StateFileLocationResponse.cs•350 B
namespace NetContextClient.Models;
/// <summary>
/// Response model for state file location
/// </summary>
public class StateFileLocationResponse
{
/// <summary>
/// Gets or sets the absolute path to the state file used for storing persistent configuration.
/// </summary>
public string StateFilePath { get; set; } = string.Empty;
}