mcp-use TypeScript API
    Preparing search index...

    Interface NodeIncomingMessageLike

    Minimal duck-typed shape of a Node.js IncomingMessage.

    interface NodeIncomingMessageLike {
        auth?: AuthInfo;
        headers: Record<string, string | string[] | undefined>;
        method?: string;
        url?: string;
    }

    Hierarchy

    • AsyncIterable<Uint8Array | string>
      • NodeIncomingMessageLike
    Index
    auth?: AuthInfo

    Verified authentication information forwarded to the Fetch handler.

    headers: Record<string, string | string[] | undefined>

    Incoming HTTP headers, including host or :authority when available.

    method?: string

    HTTP method. Defaults to GET when omitted.

    url?: string

    Request target. Defaults to / when omitted.