import { Command } from 'commander'; /** * CLI command for installing a new MCP server to MCP Hub Lite. * * This command provides two modes of operation: * * 1. **Parametric mode** (default): Specify server properties via individual options * 2. **JSON mode** (--json): Pass a complete server configuration as JSON * * ## Parametric Mode * * ``` * mcp-hub-lite install [args...] * ``` * * ## JSON Mode * * ``` * mcp-hub-lite install --json '{"name":"github-mcp","type":"stdio","command":"npx github-mcp"}' * ``` * * @returns {Command} The configured install command instance for registration with Commander.js */ export declare const installCommand: Command; //# sourceMappingURL=install.d.ts.map