@runloop/agent-axon-client
    Preparing search index...

    Type Alias McpServerStatus

    Status information for an MCP server connection.

    type McpServerStatus = {
        config?: McpServerStatusConfig;
        error?: string;
        name: string;
        scope?: string;
        serverInfo?: { name: string; version: string };
        status: "connected" | "failed" | "needs-auth" | "pending" | "disabled";
        tools?: {
            annotations?: {
                destructive?: boolean;
                openWorld?: boolean;
                readOnly?: boolean;
            };
            description?: string;
            name: string;
        }[];
    }
    Index

    Claude SDK

    Server configuration (includes URL for HTTP/SSE servers)

    error?: string

    Error message (available when status is 'failed')

    name: string

    Server name as configured

    scope?: string

    Configuration scope (e.g., project, user, local, claudeai, managed)

    serverInfo?: { name: string; version: string }

    Server information (available when connected)

    status: "connected" | "failed" | "needs-auth" | "pending" | "disabled"

    Current connection status

    tools?: {
        annotations?: {
            destructive?: boolean;
            openWorld?: boolean;
            readOnly?: boolean;
        };
        description?: string;
        name: string;
    }[]

    Tools provided by this server (available when connected)