/** * postgres-mcp - HTTP Transport Utility Handlers * * Standalone handler functions for utility endpoints (health, root info, OAuth metadata). */ import type { ServerResponse } from "node:http"; import type { OAuthResourceServer } from "../../auth/oauth-resource-server.js"; /** * Handle protected resource metadata endpoint */ export declare function handleProtectedResourceMetadata(res: ServerResponse, resourceServer?: OAuthResourceServer): void; /** * Handle health check endpoint */ export declare function handleHealthCheck(res: ServerResponse, oauthEnabled: boolean): void; /** * Handle root info endpoint — helpful for browser visitors and debugging */ export declare function handleRootInfo(res: ServerResponse): void; //# sourceMappingURL=handlers.d.ts.map