We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AEGISnetInc/TS-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
auth-provider.d.ts•594 B
/**
* Context passed to auth provider for request-scoped authentication.
*/
export interface AuthContext {
sessionToken?: string;
}
/**
* Interface for authentication providers.
*/
export interface AuthProvider {
/**
* Retrieves the Touchstone API key for the current context.
* @throws NotAuthenticatedError if not authenticated.
*/
getApiKey(context?: AuthContext): Promise<string>;
/**
* Checks if the current context is authenticated.
*/
isAuthenticated(context?: AuthContext): Promise<boolean>;
}
//# sourceMappingURL=auth-provider.d.ts.map