import { IDisposable } from "../../../../base/common/lifecycle.js"; import { URI } from "../../../../base/common/uri.js"; /** * Result of creating an MCP gateway, which is itself disposable. */ export interface IMcpGatewayResult extends IDisposable { /** * The address of the HTTP endpoint for this gateway. */ readonly address: URI; }