mcp-use TypeScript API
    Preparing search index...

    Interface ProxyRequestOptions

    Request controls used when forwarding calls to an upstream connection.

    interface ProxyRequestOptions {
        onprogress?: (progress: ProxyProgress) => void;
        signal?: AbortSignal;
    }
    Index
    onprogress?: (progress: ProxyProgress) => void

    Receives upstream progress notifications.

    signal?: AbortSignal

    Aborts the upstream request when the downstream request is cancelled.