Member Junction
    Preparing search index...

    A request from the server to execute a client-side tool.

    interface ClientToolRequest {
        Params: Record<string, unknown>;
        RequestID: string;
        TimeoutMs: number;
        ToolName: string;
    }
    Index

    Properties

    Params: Record<string, unknown>

    Parameters to pass to the tool handler

    RequestID: string

    Unique request ID for correlation with the response

    TimeoutMs: number

    Maximum time in ms the server will wait for a response

    ToolName: string

    The name of the tool to execute