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

    Interface ServerlessMcpFetchContext

    Context accepted by serverless MCP fetch adapters.

    Hosts may inject already-verified MCP auth info or allow this runtime to perform OAuth bearer-token verification itself.

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

    Verified MCP auth info from hosting middleware.

    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.