Member Junction
    Preparing search index...

    Response from a client tool execution — returned to the server when the client finishes running the tool.

    interface ClientToolResponse {
        ErrorMessage?: string;
        RequestID: string;
        Result?: unknown;
        Success: boolean;
    }
    Index

    Properties

    ErrorMessage?: string

    Error message (if failed)

    RequestID: string

    Must match the RequestID from the original request

    Result?: unknown

    The tool result (if successful)

    Success: boolean

    Whether the tool executed successfully