UNPKG

clinicaltrialsgov-mcp-server

Version:

ClinicalTrials.gov Model Context Protocol (MCP) Server that provides a suite of tools for interacting with the official ClinicalTrials.gov v2 API. Enables AI agents and LLMs to programmatically search, retrieve, and analyze clinical trial data.

13 lines (12 loc) 465 B
/** * @fileoverview Provides functions for cleaning and simplifying JSON responses * from the ClinicalTrials.gov API. * @module src/utils/clinicaltrials/jsonCleaner */ import { Study } from "../../services/clinical-trials-gov/types.js"; /** * Cleans a single study object by applying all available cleaning functions. * @param study - The study object to clean. * @returns A cleaned study object. */ export declare function cleanStudy(study: Study): Study;