UNPKG

xc-mcp

Version:

MCP server that wraps Xcode command-line tools for iOS/macOS development workflows

14 lines 523 B
/** * 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