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

    Interface OidcDiscoveryDocument

    Subset of an OpenID Connect Discovery document relevant for OAuth proxy flows.

    interface OidcDiscoveryDocument {
        authorization_endpoint: string;
        issuer?: string;
        revocation_endpoint?: string;
        scopes_supported?: readonly string[];
        token_endpoint: string;
        token_endpoint_auth_methods_supported?: readonly string[];
        userinfo_endpoint?: string;
    }
    Index

    Properties

    authorization_endpoint: string

    REQUIRED. URL of the authorization endpoint

    issuer?: string

    The issuer identifier (must match the requested issuer URL)

    revocation_endpoint?: string

    URL of the token revocation endpoint (RFC 7009)

    scopes_supported?: readonly string[]

    JSON array of OAuth 2.0 scope values supported

    token_endpoint: string

    REQUIRED. URL of the token endpoint

    token_endpoint_auth_methods_supported?: readonly string[]

    JSON array of client authentication methods supported at the token endpoint

    userinfo_endpoint?: string

    RECOMMENDED. URL of the UserInfo endpoint