#!/usr/bin/env bun export { readServerState, type ServerState } from './server-state.js'; export declare function handleMcpRequest(req: Request): Promise; export interface StartHttpServerOptions { port?: number; host?: string; } export declare function isHttpRequestAuthorized(req: Request, authToken?: string): boolean; export declare function assertHttpServerSecurity(host: string, authToken?: string): void; export declare function startHttpServer(options?: StartHttpServerOptions): Promise; //# sourceMappingURL=mcp-http-server.d.ts.map