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

    Interface DcrClientMetadata

    Client metadata for dynamic registration request (RFC 7591 Section 2)

    All fields are optional per RFC 7591. Authorization server may have required fields or default values based on policy.

    interface DcrClientMetadata {
        client_name?: string;
        client_uri?: string;
        contacts?: string[];
        grant_types?: string[];
        jwks?: object;
        jwks_uri?: string;
        logo_uri?: string;
        policy_uri?: string;
        redirect_uris?: string[];
        response_types?: string[];
        scope?: string;
        software_id?: string;
        software_statement?: string;
        software_version?: string;
        token_endpoint_auth_method?:
            | "none"
            | "client_secret_post"
            | "client_secret_basic";
        tos_uri?: string;
    }
    Index

    Properties

    client_name?: string

    Human-readable client name

    client_uri?: string

    URL providing information about the client

    contacts?: string[]

    Array of contact strings (typically email addresses)

    grant_types?: string[]

    OAuth 2.0 grant types the client may use

    jwks?: object

    Client's JSON Web Key Set document value

    jwks_uri?: string

    URL referencing the client's JSON Web Key Set

    logo_uri?: string

    URL referencing a logo for the client

    policy_uri?: string

    URL pointing to privacy policy document

    redirect_uris?: string[]

    Array of redirection URI strings for redirect-based flows

    response_types?: string[]

    OAuth 2.0 response types the client may use

    scope?: string

    Space-separated list of scope values

    software_id?: string

    Unique identifier for the client software

    software_statement?: string

    JWT containing client metadata claims (signed software statement)

    software_version?: string

    Version identifier for the client software

    token_endpoint_auth_method?:
        | "none"
        | "client_secret_post"
        | "client_secret_basic"

    Client authentication method for token endpoint

    tos_uri?: string

    URL pointing to terms of service document