Member Junction
    Preparing search index...

    Interface for MCP Execution Log data

    interface MCPExecutionLogData {
        CompletedAt: Date | null;
        ConnectionID: string;
        ConnectionName?: string;
        DurationMs: number | null;
        ErrorMessage: string | null;
        ID: string;
        InputArgs?: string | null;
        Result?: string | null;
        ServerName?: string;
        StartedAt: Date;
        Status: string;
        ToolID: string | null;
        ToolName: string;
        UserID: string;
        UserName?: string;
    }
    Index

    Properties

    CompletedAt: Date | null
    ConnectionID: string
    ConnectionName?: string
    DurationMs: number | null
    ErrorMessage: string | null
    ID: string
    InputArgs?: string | null
    Result?: string | null
    ServerName?: string
    StartedAt: Date
    Status: string
    ToolID: string | null
    ToolName: string
    UserID: string
    UserName?: string