/** * MoltFlow MCP Gateway - HTTP Server * * Implements remote MCP gateway as an Express HTTP server. * * Security Requirements Implemented: * - SEC-03: CORS origin whitelist (via corsMiddleware) * - SEC-04: Rate limiting 120 req/min per API key (via rateLimitMiddleware) * - SEC-05: HTTPS-only in production * - SEC-06: API key logging restrictions * - SEC-07: Error message sanitization * - SEC-09: DNS rebinding protection (binds to 127.0.0.1 by default) * - SEC-12: Stateless transport per request * - SEC-13: Audit logging for MCP requests */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Start HTTP server for remote MCP access * * @param server - MCP server instance with registered tools */ export declare function startHttpServer(server: McpServer): void; //# sourceMappingURL=gateway.d.ts.map