/** * Start the MCP Inspector HTTP server and return its listening port and fetch handler. * * Starts the Hono app on an available port (prefers a CLI-specified port, otherwise 3001; * in standalone/production mode it will fall back to 3002 if 3001 is unavailable), * logs server status, and attempts to open the browser when not running in production. * On unrecoverable startup failures (for example, requested ports unavailable), the process * will exit with code 1. * * @returns An object containing the resolved `port` number and the application's `fetch` handler. */ declare function startServer(): Promise<{ port: number; fetch: (request: Request, Env?: unknown, executionCtx?: import("hono").ExecutionContext) => Response | Promise; }>; declare const _default: { startServer: typeof startServer; }; export default _default; //# sourceMappingURL=server.d.ts.map