@mcp-z/client
    Preparing search index...

    Interface AuthCapabilities

    OAuth server capabilities discovered from .well-known endpoint

    interface AuthCapabilities {
        authorizationEndpoint?: string;
        introspectionEndpoint?: string;
        registrationEndpoint?: string;
        scopes?: string[];
        supportsDcr: boolean;
        tokenEndpoint?: string;
    }
    Index
    authorizationEndpoint?: string

    OAuth authorization endpoint

    introspectionEndpoint?: string

    Token introspection endpoint

    registrationEndpoint?: string

    DCR client registration endpoint

    scopes?: string[]

    Supported OAuth scopes

    supportsDcr: boolean

    Whether the server supports Dynamic Client Registration (RFC 7591)

    tokenEndpoint?: string

    OAuth token endpoint