/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Detailed information about a sandbox */ export interface SandboxInfo { /** Unique identifier for the sandbox */ sandbox_id: string; /** URL to connect to the MCP server */ server_url?: string; /** The MCP server type */ server_name: Klavis.SandboxMcpServer; /** Current status of the sandbox */ status: Klavis.SandboxStatus; /** Last update timestamp */ updated_at?: string; }