MeMesh API Documentation - v2.8.10
    Preparing search index...

    Interface ToolInvocationResult

    Tool invocation result

    interface ToolInvocationResult {
        success: boolean;
        data?: unknown;
        error?: string;
    }
    Index

    Properties

    Properties

    success: boolean

    Whether the invocation was successful

    data?: unknown

    Result data from the tool (if any)

    error?: string

    Error message (if failed)