freshcrate
Skin:/
Home > MCP Servers > clinicaltrialsgov-mcp-server

clinicaltrialsgov-mcp-server

MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.

README

clinicaltrialsgov-mcp-server

MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.

7 Tools · 1 Resource · 1 Prompt


Overview

Seven tools for searching, discovering, analyzing, and matching clinical trials:

Tool Name Description
clinicaltrials_search_studies Search studies with full-text queries, filters, pagination, sorting, and field selection.
clinicaltrials_get_study_record Fetch a single study by NCT ID. Returns the full record: protocol, eligibility, outcomes, arms, interventions, contacts, and locations.
clinicaltrials_get_study_count Get total study count for a query without fetching data. Fast statistics and breakdowns.
clinicaltrials_get_field_values Discover valid values for API fields (status, phase, study type, etc.) with per-value counts.
clinicaltrials_get_field_definitions Browse the study data model field tree — piece names, types, nesting. Supports subtree navigation and keyword search.
clinicaltrials_get_study_results Extract outcomes, adverse events, participant flow, and baseline from completed studies. Optional summary mode reduces ~200KB payloads to ~5KB.
clinicaltrials_find_eligible Match patient demographics and conditions to eligible recruiting trials. Provide age, sex, conditions, and location to find studies with matching eligibility criteria, contacts, and recruiting locations.
Resource Description
clinicaltrials://{nctId} Fetch a single clinical study by NCT ID. Full JSON.
Prompt Description
analyze_trial_landscape Adaptable workflow for data-driven trial landscape analysis using count + search tools.

Tools

clinicaltrials_search_studies

Primary search tool with full ClinicalTrials.gov query capabilities.

  • Full-text and field-specific queries (condition, intervention, sponsor, location, title, outcome)
  • Status and phase filters with typed enum values
  • Geographic proximity filtering by coordinates and distance
  • Advanced AREA[] Essie expression support for complex queries
  • Field selection to reduce payload size (full records are ~70KB each)
  • Pagination with cursor tokens, sorting by any field

clinicaltrials_get_study_results

Fetch posted results data for completed studies.

  • Outcome measures with statistics, adverse events, participant flow, baseline characteristics
  • Section-level filtering (request only the data you need)
  • Optional summary mode condenses full results (~200KB) to essential metadata (~5KB per study)
  • Batch multiple NCT IDs per call with partial-success reporting
  • Separate tracking of studies without results and fetch errors

clinicaltrials_find_eligible

Match a patient profile to eligible recruiting trials.

  • Takes age, sex, conditions, and location as patient demographics
  • Builds optimized API queries with demographic filters (age range, sex, healthy volunteers)
  • Returns studies with eligibility and location fields for the caller to evaluate
  • Provides actionable hints when no studies match (broaden conditions, adjust filters)

Features

Built on @cyanheads/mcp-ts-core:

  • Declarative tool/resource/prompt definitions with Zod schemas and format functions
  • Unified error handling — handlers throw, framework catches and classifies
  • Dual transport: stdio and Streamable HTTP from the same codebase
  • Pluggable auth (none, jwt, oauth) for HTTP transport
  • Structured logging with optional OpenTelemetry tracing

ClinicalTrials.gov-specific:

  • Type-safe client for the ClinicalTrials.gov REST API v2
  • Public API — no authentication or API keys required
  • Retry with exponential backoff (3 attempts) and rate limiting (~1 req/sec)
  • HTML error detection and structured error factories

Getting Started

Public Hosted Instance

A public instance is available at https://clinicaltrials.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP:

{
  "mcpServers": {
    "clinicaltrialsgov-mcp-server": {
      "type": "streamable-http",
      "url": "https://clinicaltrials.caseyjhand.com/mcp"
    }
  }
}

Self-Hosted / Local

Add to your MCP client config (e.g., claude_desktop_config.json):

{
  "mcpServers": {
    "clinicaltrialsgov-mcp-server": {
      "type": "stdio",
      "command": "bunx",
      "args": ["clinicaltrialsgov-mcp-server@latest"],
      "env": {
        "MCP_TRANSPORT_TYPE": "stdio"
      }
    }
  }
}

Or for Streamable HTTP:

MCP_TRANSPORT_TYPE=http
MCP_HTTP_PORT=3010

Prerequisites

Installation

  1. Clone the repository:

    git clone https://github.com/cyanheads/clinicaltrialsgov-mcp-server.git
  2. Navigate into the directory:

    cd clinicaltrialsgov-mcp-server
  3. Install dependencies:

    bun install

Configuration

All configuration is optional — the server works with defaults and no API keys.

Variable Description Default
CT_API_BASE_URL ClinicalTrials.gov API base URL. https://clinicaltrials.gov/api/v2
CT_REQUEST_TIMEOUT_MS Per-request timeout in milliseconds. 30000
CT_MAX_PAGE_SIZE Maximum page size cap. 200
MCP_TRANSPORT_TYPE Transport: stdio or http. stdio
MCP_HTTP_PORT Port for HTTP server. 3010
MCP_AUTH_MODE Auth mode: none, jwt, or oauth. none
MCP_LOG_LEVEL Log level (RFC 5424). info
LOGS_DIR Directory for log files (Node.js only). <project-root>/logs
OTEL_ENABLED Enable OpenTelemetry tracing. false

Running the Server

Local Development

  • Build and run the production version:

    bun run build
    bun run start:http   # or start:stdio
  • Run in dev mode (with watch):

    bun run dev:http     # or dev:stdio
  • Run checks and tests:

    bun run devcheck     # Lints, formats, type-checks
    bun run test         # Runs test suite

Docker

docker build -t clinicaltrialsgov-mcp-server .
docker run -p 3010:3010 clinicaltrialsgov-mcp-server

Project Structure

Directory Purpose
src/mcp-server/tools/ Tool definitions (*.tool.ts).
src/mcp-server/resources/ Resource definitions (*.resource.ts).
src/mcp-server/prompts/ Prompt definitions (*.prompt.ts).
src/services/clinical-trials/ ClinicalTrials.gov API client and types.
src/config/ Environment variable parsing and validation with Zod.
tests/ Unit and integration tests.

Development Guide

See CLAUDE.md for development guidelines and architectural rules. The short version:

  • Handlers throw, framework catches — no try/catch in tool logic
  • Use ctx.log for request-scoped logging, no console calls
  • Register new tools and resources in the index.ts barrel files

Contributing

Issues and pull requests are welcome. Run checks before submitting:

bun run devcheck
bun run test

License

Apache-2.0 — see LICENSE for details.

Release History

VersionChangesUrgencyDate
v2.9.3Caller cancellation, mcp-ts-core ^0.12.5 - A caller that disconnects mid-request now surfaces `RequestCancelled` immediately instead of being retried, or walked one ID at a time in the batch-results fallback - `@cyanheads/mcp-ts-core` ^0.12.3 → ^0.12.5 — upstream 500/501 responses classify as `ServiceUnavailable`, a disconnected client reports as a cancellation, and server identity resolves from the served package rather than the working directory - SSRF DNS guard (inherited from the framework High9/3/2026
v2.9.2mcp-ts-core 0.12.3 — MCP SDK v2 migration - `@cyanheads/mcp-ts-core` `^0.11.5` → `^0.12.3` — MCP SDK v2 migration, runtime package split (`@modelcontextprotocol/server`) - `find_eligible`'s `location` and `get_study_record`'s `nearLocation` reject an undeclared key by name instead of silently stripping it - `MCP_SESSION_MODE` defaults to `auto`; added HTTP resumability env vars for replaying a dropped SSE stream - Docker build stage pinned to $BUILDPLATFORM (bun `1.3.14` → `1.4.0`) — QEMU emulaMedium8/21/2026
v2.9.1suggestion floor, blank_value hint, dead Worker script cleanup - nearestPieces field/sort suggestions require a similarity floor instead of always returning three unrelated names (#112) - blank_value recovery hint and blankValueMessage lead with the supply action, offering omission only for optional parameters (#113) - dropped test:conformance, build:worker, deploy:dev, deploy:prod and the @cloudflare/workers-types devDependency; wired toolContractSuite as tests/mcp-server/tools/tool-contract.tHigh8/18/2026
v2.8.5format() completeness — get_study_record and get_study_results - clinicaltrials_get_study_record renders leaves structuredContent already carried but format() dropped, including the full observational-study subtree (#18) - clinicaltrials_get_study_results full mode walks the complete classes -> categories -> measurements tree instead of sampling the first class/category (#63) [CHANGELOG v2.8.5](https://github.com/cyanheads/clinicaltrialsgov-mcp-server/blob/main/changelog/2.8.x/2.8.5.md)High7/26/2026
v2.8.2get_field_definitions recovery-hint regression path_not_found no longer points callers at the removed no-args overview call. Fixed: - `path_not_found` recovery hint now names mode="search"/mode="overview" instead of the removed no-args overview (#87) 569 tests pass; `bun run devcheck` clean. [CHANGELOG v2.8.2](https://github.com/cyanheads/clinicaltrialsgov-mcp-server/blob/main/changelog/2.8.x/2.8.2.md)High7/9/2026
v2.8.0search_studies output-channel parity, js-yaml advisory clear search_studies bounds structuredContent to a compact per-study index by default; find_eligible condition re-rank drops shared-word false friends. Changed: - search_studies structuredContent.studies is now a compact per-study index by default (nctId, briefTitle, overallStatus, phases, enrollmentCount, leadSponsor, conditions, bounded total/nearest locations) instead of the full ~70KB record. BREAKING — pass fields for full-fidelity lHigh7/1/2026
v2.7.4geoFilter site re-ranking, multi-valued field flag, concise parse errors Added: - search_studies: with an active geoFilter, each study's locations[] is re-ranked by proximity to the filter center so the matched site leads and renders with distanceMi; sites without a geoPoint are kept (re-rank only, never filter). New shared geo-helpers.ts (#84) - get_field_values: array-typed fields (Phase, Condition) carry multiValued: true plus a format() note, so callers don't read the per-value buckets as High6/21/2026
v2.7.2Outcome rendering and filter-disclosure correctness Corrects misleading output across five tools: not-reached arms no longer vanish from outcome summaries, truncation and cap flags fire only on real overflow, and an empty field list is rejected instead of dumping the full catalog. Changed: - `get_study_count` echoes `sentinelFilterActive: true` when the default unknown-enrollment exclusion is in effect, matching `search_studies` (#78) - `get_study_record` `filtersApplied` records a cap and itHigh6/14/2026
v2.7.0Condition re-rank, referenceLimit, sort guidance find_eligible now stable-sorts results so studies whose own condition names a requested condition rank above tangential MeSH-umbrella matches from the upstream fuzzy query.cond search. Recall unchanged — nothing dropped. get_study_record gains referenceLimit mirroring locationLimit/outcomeLimit. search_studies sort description guides EnrollmentCount:desc toward AREA[StudyType]INTERVENTIONAL. Added: - get_study_record: referenceLimit caps refereHigh6/11/2026
v2.6.4Remove SQLite study mirror; fix find_eligible recruiting filter Removes the opt-in local SQLite study mirror (CT_MIRROR_*). The FTS5 index cannot reproduce ClinicalTrials.gov's server-side field-scoped search — condition counts diverged 4–5× from live (#68), fields selection was silently dropped and pagination was broken (#66), and the metadata-only schema could not return resultsSection at all (#65). Search, count, and record lookups now always use the live API. Removed: - Local SQLite mirroHigh6/5/2026
v2.5.4Two bug fixes: dead error contract, status-label misses The batch-fallback for get-study-results converts batch errors to per-ID fetchErrors, making the ids_not_found contract dead documentation. The field-values validator misdirected agents reaching for common status labels. Fixed: - **get-study-results**: drop unreachable ids_not_found error contract — invalid NCT IDs surface in fetchErrors, not as a thrown error (#55) - **get-field-values**: auto-correct RecruitmentStatus/RecruitingStatus High5/31/2026
v2.4.12mcp-ts-core ^0.9.1 → ^0.9.6, zod added, manifest.json + .mcpbignore scaffolded, install badges, action-first descriptionsHigh5/23/2026
main@2026-05-16Latest activity on main branchHigh5/16/2026
v2.1.0Latest release: v2.1.0High4/6/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

resonantOpen-source relational AI framework with identity persistence, memory, and MCP integration. Build relationship-aware AI agents that remember, grow, and maintain continuity. Built on Claude Agent SDK.v3.0.0
tabularisA lightweight, cross-platform database client for developers. Supports MySQL, PostgreSQL and SQLite. Hackable with plugins. Built for speed, security, and aesthetics.v0.23.0
mcp-searxngMCP Server for SearXNGv2.2.0
memexZettelkasten-based persistent memory for AI coding agents. Works with Claude Code, Cursor, VS Code Copilot, Codex, Windsurf & any MCP client. No vector DB — just markdown + git sync.v0.4.1
scrapfly-mcpOfficial Scrapfly MCP server for Cursor, Claude Desktop, and any MCP-compatible client. Enterprise-grade web scraping, AI extraction, and anti-bot–aware data access as first-class tools.main@2026-09-08

More from cyanheads

mcp-ts-coreAgent-native TypeScript framework for building MCP servers. Build tools, not infrastructure.

More in MCP Servers

difyProduction-ready platform for agentic workflow development.
tabularisA lightweight, cross-platform database client for developers. Supports MySQL, PostgreSQL and SQLite. Hackable with plugins. Built for speed, security, and aesthetics.
ai-agents-from-zero 🚀 2026 最系统的 AI Agent 速成指南|智能体实战教程 · 完整学习路径 + 实战项目 + 面试题库 · 对标大模型应用开发工程师岗位 · 覆盖LangChain / LangGraph / Coze / Dify / MCP / skills / LLM / RAG / 提示词 · 企业级部署与微调 · 从0到企业级落地 + 从学习到上线项目 + 面试准备一体化
studioOpen-source control plane for your AI agents. Connect tools, hire agents, track every token and dollar