/** * @fileoverview Server-specific configuration for nist-nvd-mcp-server. * Parses NVD API key and request timeout from environment variables. * @module config/server-config */ import { z } from '@cyanheads/mcp-ts-core'; declare const ServerConfigSchema: z.ZodObject<{ apiKey: z.ZodOptional; requestTimeoutMs: z.ZodDefault>; }, z.core.$strip>; export type ServerConfig = z.infer; /** Returns the parsed server config, parsing from environment variables on first call. */ export declare function getServerConfig(): ServerConfig; export {}; //# sourceMappingURL=server-config.d.ts.map