ART Framework API Docs
    Preparing search index...

    Interface McpServerStatus

    Represents the internal status of an MCP server connection. This is not part of the public configuration.

    McpServerStatus

    interface McpServerStatus {
        id: string;
        lastConnected?: Date;
        lastError?: string;
        status: "connected" | "disconnected" | "error" | "connecting";
        toolCount: number;
    }
    Index

    Properties

    id: string

    The unique identifier for the server.

    lastConnected?: Date

    The timestamp of the last successful connection.

    lastError?: string

    The last error message received from the server.

    status: "connected" | "disconnected" | "error" | "connecting"

    The current connection status of the server.

    toolCount: number

    The number of tools registered from this server.