Xiaoyibao Clinical Trials
FreeNot checkeda MCP server developed by [xiao-x-bao community](https://info.xiao-x-bao.com.cn) for clinical trials from ClinicalTrials.gov API v2. Supports searching by keywo
About
a MCP server developed by xiao-x-bao community for clinical trials from ClinicalTrials.gov API v2. Supports searching by keywords, disease, location with intelligent defaults (recruiting trials from past 3 months
README
English | 简体中文
MCP server for querying clinical trials from ClinicalTrials.gov API v2. Provides intelligent search with defaults optimized for finding relevant, currently recruiting trials.
功能特性 Features
- 🔍 Smart Search: Keywords, disease type, location-based search
- 📍 Geographic: Search by country, city, or coordinates
- ⏰ Time Filters: Default to past 3 months (recruiting trials)
- 📊 Detailed Info: Complete trial details including PI, contacts, eligibility
- 🌐 Bilingual: Supports Chinese and English queries
Quick Start with npx
No installation required! Run directly:
npx xiaoyibao-clinical-trials
MCP Client Configuration
Add to your MCP client settings:
Using npx (Recommended)
{
"mcpServers": {
"clinical-trials": {
"command": "npx",
"args": ["-y", "xiaoyibao-clinical-trials"]
}
}
}
Using local installation
npm install -g xiaoyibao-clinical-trials
{
"mcpServers": {
"clinical-trials": {
"command": "xiaoyibao-clinical-trials"
}
}
}
Available Tools
1. search_clinical_trials
Search for clinical trials with intelligent defaults.
Default Behavior:
- Status:
RECRUITING(currently recruiting) - Time: Past 3 months (trials more likely to be open)
- Results: 30 most relevant trials, sorted by recent updates
Parameters:
keywords(string): Keywords like "KRAS G12D", "PD-1", "Pembrolizumab"condition(string): Disease/condition like "Pancreatic Cancer", "肠癌"country(string): Country name like "China", "United States", "中国"city(string): City name like "Beijing", "上海", "New York"months(number): Time range in months (default: 3)status(string): Recruitment status (default: "RECRUITING")pageSize(number): Results per page (default: 30, max: 100)pageToken(string): Pagination token
Example:
{
"keywords": "KRAS G12D",
"condition": "Pancreatic Cancer",
"country": "China"
}
2. get_trial_details
Get comprehensive trial details including:
- Principal Investigators (PI) information
- Hospital locations by city
- Contact details (phone, email)
- Detailed study description
- Eligibility criteria (inclusion/exclusion)
- Primary/secondary outcomes
Parameters:
nctId(string, required): NCT number like "NCT04852770"
Example:
{
"nctId": "NCT04852770"
}
3. search_by_location
Search trials by geographic coordinates.
Parameters:
latitude(number, required): Latitudelongitude(number, required): Longituderadius(number): Search radius in miles (default: 50)condition(string): Disease/condition (optional)keywords(string): Keywords (optional)status(string): Recruitment status (default: "RECRUITING")months(number): Time range (default: 3)pageSize(number): Results per page (default: 30)
Example:
{
"latitude": 39.9042,
"longitude": 116.4074,
"radius": 50,
"condition": "Lung Cancer"
}
Output Format
All responses are in JSON format, optimized for LLM processing.
Search Results
{
"totalCount": 13,
"count": 13,
"studies": [
{
"nctId": "NCT06218914",
"title": "Phase 1 Study to Investigate TCRTs KRAS Mutation...",
"status": "RECRUITING",
"conditions": ["Pancreatic Cancer", "KRAS G12D"],
"interventions": [{"type": "Drug", "name": "NT-112"}],
"sponsor": "AstraZeneca",
"studyType": "INTERVENTIONAL",
"phase": ["PHASE1"],
"lastUpdate": "2024-10-15"
}
]
}
Trial Details
Includes all search fields plus:
investigators[]- PI and research teamoverallOfficials[]- Study officialscentralContacts[]- Global contact info (phone, email)locations[]- All hospital sites with local contactslocationsSummary- Statistics (countries, cities, total sites)eligibility- Detailed inclusion/exclusion criteriaprimaryOutcomes[],secondaryOutcomes[]- Study endpointsbriefSummary,detailedDescription- Full study description
Toolchain Prompt Guidance
To ensure stability, accuracy, and user experience when calling this MCP service, we provide dedicated toolchain prompt documentation. These prompts are not just optional references—they are essential foundations for using this service effectively.
Why Toolchain Prompts Matter
- Stability: Prompts standardize tool-calling sequences (search → details → structured output), preventing LLM from making arbitrary calls that result in low efficiency or messy results.
- Accuracy: Clear parameter-selection rules and location-filtering logic ensure search results match patient questions precisely (e.g., drug name + province like GFH276 + Zhejiang hospitals).
- User Experience: A unified four-part output structure (conclusion first → evidence & explanation → key tips → risks & channel reminders) helps patients/families understand quickly, avoid risks, and find next-step support.
Prompt Files & Usage Methods
1. Compact Version (Recommended for Production)
- File: CLINICAL_TRIALS_PROMPT_REFERENCE_COMPACT.md
- Purpose: Use directly as the system prompt / developer prompt for MCP clients (e.g., Claude Desktop).
- Benefits: Concise and powerful; contains all core rules and scenarios; minimizes token waste.
- How to use:
- Copy or reference the file content into your LLM's system prompt.
- LLM will automatically call
search_clinical_trialsandget_trial_detailsfollowing the toolchain rules. - Output will auto-organize into the four-part structure, optimized for patient/family reading.
2. Full Version (Reference & Documentation)
- File: CLINICAL_TRIALS_PROMPT_REFERENCE.md
- Purpose: Detailed explanations and additional scenarios for developers to understand or customize.
- When to use:
- Need to understand the full toolchain design philosophy.
- Adding new clinical query scenarios.
- Team training or documentation reference.
Typical Usage Scenarios
Scenario 1: Query GFH276 + Zhejiang Hospitals
Patient question → Search GFH276 (keyword) + China (country)
→ Get NCT number (e.g., NCT07198321)
→ Query trial details & hospital locations
→ Filter hospitals in Zhejiang cities (Hangzhou/Ningbo/Wenzhou, etc.)
→ Output in four-part structure
Scenario 2: Find Trials Near Patient
Patient question (with city or coordinates) → Use search_by_location or search_clinical_trials (city param)
→ List trials in patient's city/nearby
→ Call get_trial_details for key trials
→ Output in four-part structure
Integration Recommendations
- Claude Desktop Users: Paste
CLINICAL_TRIALS_PROMPT_REFERENCE_COMPACT.mdcontent into your Claude Desktop custom system prompt, or reference the file at conversation start. - Other MCP Clients: Based on your client's system prompt / instruction configuration, integrate the prompt content accordingly.
- API Callers: If using this MCP via API, include the compact prompt version in your system prompt parameter to ensure every call follows the standard.
Commitment to Stability
We commit to long-term stability of toolchain prompts. When updating:
- Backward compatibility of core rules is maintained.
- Breaking changes (if any) are clearly marked in git commits.
- Migration guides and version cross-reference docs are provided.
Welcome feedback or improvement suggestions! Contact us via GitHub issue or the "XiaoYiBao Assistant" WeChat official account.
API Reference
Development
# Clone repository
git clone https://github.com/PancrePal-xiaoyibao/xiaoyibao-clinical-trials-mcp-server.git
cd xiaoyibao-clinical-trials-mcp-server
# Install dependencies
npm install
# Run tests
npm test
# Start server
npm start
Publishing to npm
# Login to npm
npm login
# Publish package
npm publish
License
MIT
Contributing
Contributions welcome! Please open an issue or submit a pull request.
Speical thanks to the contribution & development of Xiaoyibao-Pancrepal & xiao-x-bao community to support cancer/rare disease patients and their families with ❤️ & AI!
from github.com/PancrePal-xiaoyibao/xiaoyibao-clinical-trials-mcp-server
Installing Xiaoyibao Clinical Trials
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/PancrePal-xiaoyibao/xiaoyibao-clinical-trials-mcp-serverFAQ
Is Xiaoyibao Clinical Trials MCP free?
Yes, Xiaoyibao Clinical Trials MCP is free — one-click install via Unyly at no cost.
Does Xiaoyibao Clinical Trials need an API key?
No, Xiaoyibao Clinical Trials runs without API keys or environment variables.
Is Xiaoyibao Clinical Trials hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Xiaoyibao Clinical Trials in Claude Desktop, Claude Code or Cursor?
Open Xiaoyibao Clinical Trials on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Xiaoyibao Clinical Trials with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
