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
SemanticSearchResponse.cs•331 B
namespace NetContextClient.Models;
/// <summary>
/// Response model for semantic search results
/// </summary>
public class SemanticSearchResponse
{
/// <summary>
/// Gets or sets the array of semantic search results ordered by relevance.
/// </summary>
public SemanticSearchResult[] Results { get; set; } = [];
}