Member Junction
    Preparing search index...

    Execution log entry for tool calls

    interface MCPExecutionLogEntry {
        connectionId: string;
        durationMs?: number;
        endedAt?: Date;
        errorMessage?: string;
        inputParameters?: Record<string, unknown>;
        outputContent?: Record<string, unknown>;
        outputTruncated: boolean;
        startedAt: Date;
        success: boolean;
        toolId?: string;
        toolName: string;
        userId: string;
    }
    Index

    Properties

    connectionId: string

    Connection ID

    durationMs?: number

    Duration in milliseconds

    endedAt?: Date

    When execution ended

    errorMessage?: string

    Error message if failed

    inputParameters?: Record<string, unknown>

    Input parameters (if logging enabled)

    outputContent?: Record<string, unknown>

    Output content (if logging enabled)

    outputTruncated: boolean

    Whether output was truncated

    startedAt: Date

    When execution started

    success: boolean

    Whether execution succeeded

    toolId?: string

    Tool ID (if cached)

    toolName: string

    Tool name

    userId: string

    User who initiated the call