
Mutation Clinical Trial Matching MCP
A Model Context Protocol server that enables Claude Desktop to search clinicaltrials.gov for matching clinical trials based on genetic mutations provided in natural language queries.
README
Mutation Clinical Trial Matching MCP
A Model Context Protocol (MCP) server that enables Claude Desktop to search for matches in clincialtrials.gov based on mutations.
Status
This is currently first phase of development. It works to retreive trials based on given mutations in the claude query. However, there are still bugs and further refinements and additions to be implemented.
Overview
This project follows the Agentic Coding principles to create a system that integrates Claude Desktop with the clinicaltrials.gov API. The server allows for natural language queries about genetic mutations and returns summarized information about relevant clinical trials.
flowchart LR
Claude[Claude Desktop] <-->|MCP Protocol| Server[MCP Server]
Server -->|Query| API[Clinicaltrials.gov API]
API -->|Trial Data| Server
Server -->|Format| Summary[Summarize Data]
Summary -->|Structured Response| Server
Server -->|Return| Claude
Project Structure
This project is organized according to the Agentic Coding paradigm:
-
Requirements (Human-led):
- Search and summarize clinical trials related to specific genetic mutations
- Provide mutation information as contextual resources
- Integrate seamlessly with Claude Desktop
-
Flow Design (Collaborative):
- User queries Claude Desktop about a genetic mutation
- Claude calls our MCP server tool
- Server queries clinicaltrials.gov API
- Server processes and summarizes the results
- Server returns formatted results to Claude
-
Utilities (Collaborative):
clinicaltrials/query.py
: Handles API calls to clinicaltrials.govutils/call_llm.py
: Utilities for working with Claude
-
Node Design (AI-led):
llm/summarize.py
: Formats clinical trial data into readable summariesclinicaltrials_mcp_server.py
: Implements the MCP server interface
-
Implementation (AI-led):
- FastMCP SDK for handling the protocol details
- Error handling at all levels
- Resources for common mutations
Components
MCP Server (clinicaltrials_mcp_server.py
)
The main server that implements the Model Context Protocol interface, using the official Python SDK. It:
- Registers and exposes tools for Claude to use
- Provides resources with information about common mutations
- Handles the communication with Claude Desktop
Query Module (clinicaltrials/query.py
)
Responsible for querying the clinicaltrials.gov API with:
- Robust error handling
- Input validation
- Detailed logging
Summarizer (llm/summarize.py
)
Processes and formats the clinical trials data:
- Organizes trials by phase
- Extracts key information (NCT ID, summary, conditions, etc.)
- Creates a readable markdown summary
Usage
-
Install dependencies:
uv pip install -r requirements.txt
-
Configure Claude Desktop:
- The config at
~/Library/Application Support/Claude/claude_desktop_config.json
should already be set up
- The config at
-
Start Claude Desktop and ask questions like:
- "What clinical trials are available for EGFR L858R mutations?"
- "Are there any trials for BRAF V600E mutations?"
- "Tell me about trials for ALK rearrangements"
-
Use resources by asking:
- "Can you tell me more about the KRAS G12C mutation?"
Integrating with Claude Desktop
You can configure this project as a Claude Desktop MCP tool. Use path placeholders in your configuration, and substitute them with your actual paths:
"mutation-clinical-trials-mcp": {
"command": "{PATH_TO_VENV}/bin/python",
"args": [
"{PATH_TO_PROJECT}/clinicaltrials_mcp_server.py"
],
"description": "Matches genetic mutations to relevant clinical trials and provides summaries."
}
Path Variables:
{PATH_TO_VENV}
: Full path to your virtual environment directory.{PATH_TO_PROJECT}
: Full path to the directory containing your project files.
Installation Instructions:
- Clone the repository to your local machine.
- Create a virtual environment:
python -m venv .venv
- Activate the virtual environment and install dependencies:
source .venv/bin/activate # macOS/Linux .venv\Scripts\activate # Windows pip install -r requirements.txt
- Determine the full path to your virtual environment and project directory.
- Update your configuration with these specific paths.
Examples:
- On macOS/Linux:
"command": "/Users/username/projects/mutation_trial_matcher/.venv/bin/python"
- On Windows:
"command": "C:\\Users\\username\\projects\\mutation_trial_matcher\\.venv\\Scripts\\python.exe"
Path Finding Tips:
- To find the exact path to your Python interpreter in the virtual environment, run:
which python
(macOS/Linux)where python
(Windows, after activating the venv)
- For the project path, use the full path to the directory containing
clinicaltrials_mcp_server.py
.
Future Improvements
-
Add additional tools for:
- Filtering trials by location, phase, or status
- Getting detailed information about a specific trial by NCT ID
-
Expand resources with:
- More mutation types
- Treatment options for each mutation type
- Survival statistics
-
Improve summarization with:
- Categorization by intervention type
- Highlighting novel treatment approaches
Dependencies
- Python 3.7+
- mcp[cli] - Official Model Context Protocol SDK
- requests - For API calls
- python-dotenv - For environment variable management
Troubleshooting
If Claude Desktop disconnects from the MCP server:
- Check logs at:
~/Library/Logs/Claude/mcp-server-clinicaltrials-mcp.log
- Restart Claude Desktop
- Verify the server is running correctly
Acknowledgements
This project was built using the PocketFlow-Template-Python as a starting point. Special thanks to the original contributors of that project for providing the foundation and structure that made this implementation possible.
The project follows the Agentic Coding methodology as outlined in the original template.
This project is licensed under the MIT License - see the LICENSE file for details.
Development Process
This project was developed using an AI-assisted coding approach, following the Agentic Coding principles where humans design and AI agents implement. The original program on main built on 2025-04-30. The implementation was created through pair programming with:
- Windsurf
- ChatGPT 4.1
- Claude 3.7 Sonnet
These AI assistants were instrumental in translating high-level design requirements into functional code, helping with API integration, and structuring the project according to best practices.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.