MCP TypeScript SDK (V2)
    Preparing search index...

    Variable OAuthClientInformationFullSchemaConst

    OAuthClientInformationFullSchema: ZodObject<
        {
            client_id: ZodString;
            client_id_issued_at: ZodOptional<ZodNumber>;
            client_name: ZodOptional<ZodString>;
            client_secret: ZodOptional<ZodString>;
            client_secret_expires_at: ZodOptional<ZodNumber>;
            client_uri: ZodOptional<ZodURL>;
            contacts: ZodOptional<ZodArray<ZodString>>;
            grant_types: ZodOptional<ZodArray<ZodString>>;
            jwks: ZodOptional<ZodAny>;
            jwks_uri: ZodOptional<ZodURL>;
            logo_uri: ZodUnion<
                [
                    ZodOptional<ZodURL>,
                    ZodPipe<ZodLiteral<"">, ZodTransform<undefined, "">>,
                ],
            >;
            policy_uri: ZodOptional<ZodString>;
            redirect_uris: ZodArray<ZodURL>;
            response_types: ZodOptional<ZodArray<ZodString>>;
            scope: ZodOptional<ZodString>;
            software_id: ZodOptional<ZodString>;
            software_statement: ZodOptional<ZodString>;
            software_version: ZodOptional<ZodString>;
            token_endpoint_auth_method: ZodOptional<ZodString>;
            tos_uri: ZodUnion<
                [
                    ZodOptional<ZodURL>,
                    ZodPipe<ZodLiteral<"">, ZodTransform<undefined, "">>,
                ],
            >;
        },
        $strip,
    > = ...

    RFC 7591 OAuth 2.0 Dynamic Client Registration full response (client information plus metadata)