//#region src/sse.d.ts /** * Creates and starts an Express server that provides SSE transport for the MCP Fetch server * @param port The port to listen on (defaults to PORT env var or 3000) * @param uriPrefix The URI prefix to prepend to all routes (for reverse proxy scenarios) * @returns A cleanup function to close the server */ declare function startSSEServer(port?: number, uriPrefix?: string): () => Promise; //#endregion export { startSSEServer };