We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexander-zuev/kollektiv-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* API Client configuration
*/
export interface ApiClientConfig {
baseUrl: string;
headers?: Record<string, string>;
timeout?: number;
authHeader?: () => Record<string, string>;
onAuthError?: (statusCode: 401 | 403, errorCode?: string) => Promise<void>;
}
export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';