UNPKG

xc-mcp

Version:

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

14 lines 478 B
/** * CLI configuration for XC-MCP server * Parses command line arguments and environment variables */ function parseArgs() { const args = process.argv.slice(2); return { minimalDescriptions: args.includes('--mini') || args.includes('-m'), deferLoading: process.env.XC_MCP_DEFER_LOADING !== 'false', buildOnly: args.includes('--build-only') || args.includes('-b'), }; } export const config = parseArgs(); //# sourceMappingURL=config.js.map