MCP Server Framework - v1.0.0
    Preparing search index...

    Interface UpstreamEndpoints

    Upstream OAuth endpoint URLs.

    interface UpstreamEndpoints {
        authorizationUrl: string;
        revocationUrl?: string;
        tokenUrl: string;
        userinfoUrl?: string;
    }
    Index

    Properties

    authorizationUrl: string

    Authorization endpoint (user is redirected here)

    revocationUrl?: string

    Token revocation endpoint (optional)

    tokenUrl: string

    Token endpoint (code → access_token exchange)

    userinfoUrl?: string

    UserInfo endpoint for token verification. The response is passed to UpstreamOAuthOptions.mapUserInfo. Required unless a custom verifyAccessToken is provided.