/** * CLI configuration for XC-MCP server * Parses command line arguments and environment variables */ export interface MCPConfig { /** Use minimal tool descriptions (~70 chars) instead of full docs */ minimalDescriptions: boolean; /** Enable defer_loading hint for MCP clients that support it */ deferLoading: boolean; /** Load only build-related tools (xcodebuild, simctl-list, cache, system) */ buildOnly: boolean; } export declare const config: MCPConfig; //# sourceMappingURL=config.d.ts.map