@mcp-z/oauth-google
    Preparing search index...

    Interface DcrOAuthProviderConfig

    DCR Provider configuration

    interface DcrOAuthProviderConfig {
        clientId: string;
        clientSecret?: string;
        logger: Logger;
        scope: string;
        verifyEndpoint: string;
    }
    Index
    clientId: string

    Google application client ID

    clientSecret?: string

    Google application client secret (optional for public clients)

    logger: Logger

    Logger for auth operations

    scope: string

    OAuth scopes

    verifyEndpoint: string

    DCR token verification endpoint URL (e.g., http://localhost:3000/oauth/verify)