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.
11 lines (10 loc) • 432 B
TypeScript
/**
* @fileoverview Handles registration and error handling for the `clinicaltrials_get_study` tool.
* @module src/mcp-server/tools/getStudy/registration
*/
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
* Registers the 'clinicaltrials_get_study' tool with the MCP server.
* @param server - The MCP server instance.
*/
export declare const registerGetStudyTool: (server: McpServer) => Promise<void>;