Frodo Library - v4.0.0-42
    Preparing search index...

    Type Alias McpRuntimeServiceAccountAuth

    Credentials payload for a service-account request context.

    type McpRuntimeServiceAccountAuth = {
        allowInsecureConnection?: boolean;
        curlirize?: boolean;
        debug?: boolean;
        deploymentType?: string;
        host: string;
        mode: "service-account";
        realm?: string;
        serviceAccountId: string;
        serviceAccountJwk: string | Record<string, unknown>;
    }
    Index

    Properties

    allowInsecureConnection?: boolean

    Optional insecure-connection toggle.

    curlirize?: boolean

    Optional curlirize toggle.

    debug?: boolean

    Optional debug toggle.

    deploymentType?: string

    Optional deployment type override.

    host: string

    AM host base URL.

    mode: "service-account"

    Discriminator for service-account auth mode.

    realm?: string

    Optional realm override.

    serviceAccountId: string

    Service account UUID.

    serviceAccountJwk: string | Record<string, unknown>

    Service account JWK, provided as JSON string or object.