mcp-use TypeScript API
    Preparing search index...

    Interface ProxyProgress

    Progress payload received while a proxied tool is running.

    interface ProxyProgress {
        message?: string;
        progress: number;
        total?: number;
    }
    Index
    message?: string

    Human-readable progress detail.

    progress: number

    Completed work units.

    total?: number

    Total work units, when known.