We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fr0ster/mcp-abap-adt'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
IAuthBrokerFactory.ts•640 B
/**
* Interface for AuthBrokerFactory
* Allows different implementations for different server versions
*/
import type { AuthBroker } from '@mcp-abap-adt/auth-broker';
export interface IAuthBrokerFactory {
/**
* Initialize default broker based on CLI args and .env file presence
* Called once at server startup
*/
initializeDefaultBroker(): Promise<void>;
/**
* Get or create auth broker for specific destination
* If destination already has broker, returns existing one
* Otherwise creates new broker with serviceKeyStore
*/
getOrCreateAuthBroker(destination?: string): Promise<AuthBroker | undefined>;
}