#!/usr/bin/env node /** * ksp-mcp CLI Entry Point * * Starts the MCP server with configurable transport: * - stdio (default): For Claude Desktop and local tools * - http: For network access using Streamable HTTP transport * * @example * ```bash * # Default: stdio transport * ksp-mcp * * # Network: Streamable HTTP transport * ksp-mcp --transport http --port 3000 --host 0.0.0.0 * ``` */ export * from './lib.js'; //# sourceMappingURL=index.d.ts.map