export declare const DEFAULT_MCP_URL = "https://agent.tinyfish.ai/mcp"; export declare function endpointOf(url: string): string; /** One host serves `/mcp` and `/v1`, so origin is the API base. */ export declare function apiBaseFromMcpUrl(mcpUrl: string): string | undefined; /** doctor reuses the CLI's own BASE_URL check; off-default endpoints cannot. */ export declare function isDefaultEndpoint(mcpUrl: string): boolean;