import type Conf from 'conf'; import type { InfinicodeConfig } from '../kernel/setup.js'; export interface McpOptions { role?: string; name?: string; meshPort?: string; token?: string; seed?: string[]; tailscale?: boolean; tag?: string; lan?: boolean; lanPort?: string; /** Canonical URL generated by `infinicode mesh link`. */ connect?: string; } export declare function mcpCommand(config: Conf, opts: McpOptions): Promise;