UNPKG

clinicaltrialsgov-mcp-server

Version:

Search ClinicalTrials.gov trials, retrieve study details and results, and match patients to eligible trials via MCP. STDIO or Streamable HTTP.

15 lines 640 B
/** * @fileoverview Server-specific configuration for the ClinicalTrials.gov MCP server. * @module config/server-config */ import { z } from '@cyanheads/mcp-ts-core'; declare const ServerConfigSchema: z.ZodObject<{ apiBaseUrl: z.ZodDefault<z.ZodString>; requestTimeoutMs: z.ZodDefault<z.ZodCoercedNumber<unknown>>; maxPageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>; }, z.core.$strip>; export type ServerConfig = z.infer<typeof ServerConfigSchema>; /** Get server configuration (lazy-parsed from env vars). */ export declare function getServerConfig(): ServerConfig; export {}; //# sourceMappingURL=server-config.d.ts.map