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

    Interface B2McpFetchHandler

    Runtime-neutral fetch handler for B2 MCP HTTP requests.

    interface B2McpFetchHandler {
        sessions: Map<string, never>;
        close(): Promise<void>;
        drain(): void;
        fetch(request: Request, context?: HttpFetchContext): Promise<Response>;
    }
    Index
    sessions: Map<string, never>

    Stateless compatibility sessions exposed for MCP SDK handler shape compatibility.

    • Close the underlying MCP handler and release timers.

      Returns Promise<void>