/** * Lazily starts the Browser Use MCP stdio entrypoint. Keeping this import lazy * ensures the entrypoint loads environment configuration before its runtime is * evaluated. */ export async function startBrowserUseMcp(): Promise { await import('./browser-use-mcp.js'); } // getBrowserUseRuntime: used by Browser Use services and environment-mode regression coverage. export { getBrowserUseRuntime } from './browser-use-runtime.js';