import type { McpServer } from '@modelcontextprotocol/server'; /** Default HTTP port. */ declare const DEFAULT_PORT = 3000; /** Start the HTTP server. */ declare function startHttpServer(server: McpServer, port?: number): void; export { startHttpServer, DEFAULT_PORT };