Member Junction
    Preparing search index...

    Result from executing a tool through the adapter

    interface AgentToolResult {
        connectionId: string;
        content: MCPContentBlock[];
        durationMs: number;
        error?: string;
        isError?: boolean;
        success: boolean;
        toolName: string;
    }
    Index

    Properties

    connectionId: string

    Connection used for execution

    content: MCPContentBlock[]

    Result content from the tool

    durationMs: number

    Execution time in milliseconds

    error?: string

    Error message if execution failed

    isError?: boolean

    Whether the result indicates an error from the tool itself

    success: boolean

    Whether the execution was successful

    toolName: string

    The tool that was executed