@backblaze-labs/b2-mcp
    Preparing search index...

    Interface NormalizedServerlessMcpFetchContext

    Normalized serverless request context used internally by adapters.

    interface NormalizedServerlessMcpFetchContext {
        authInfo: AuthInfo | null;
        oauthFetch?: (
            input: string | URL | Request,
            init?: RequestInit,
        ) => Promise<Response>;
        remoteAddress?: string;
    }
    Index
    authInfo: AuthInfo | null

    Verified auth info, or null when OAuth verification is still required.

    oauthFetch?: (
        input: string | URL | Request,
        init?: RequestInit,
    ) => Promise<Response>

    Fetch implementation used for OAuth metadata/introspection calls.

    remoteAddress?: string

    Remote caller address for admission-control accounting.