( input: ExecutorMcpServerConfig | LocalMcpRequestHandlerConfig, )
| 128 | "engine" in config ? config.engine : null; |
| 129 | |
| 130 | const normalizeHandlerConfig = ( |
| 131 | input: ExecutorMcpServerConfig | LocalMcpRequestHandlerConfig, |
| 132 | ): LocalMcpRequestHandlerConfig => ("defaultConfig" in input ? input : { defaultConfig: input }); |
| 133 | |
| 134 | // `--port 0` (e2e, some CLI boots) installs EXECUTOR_WEB_BASE_URL with port 0 |
| 135 | // before the OS assigns a listen port. That origin is not browser-reachable |
no outgoing calls
no test coverage detected