Wraps the ClinicalTrials.gov API v2 so you can query trial data directly from Claude. No authentication required. Part of the Pipeworx gateway, which means you can either hit this specific endpoint or connect to their full gateway for 673+ data sources. They include an ask_pipeworx tool that lets you query in plain English instead of calling structured endpoints. Useful when you're researching medical trials, checking recruitment status, or pulling study details without leaving your editor. The API is free and publicly accessible, so you can start using it immediately through their hosted gateway at gateway.pipeworx.io.
ClinicalTrials MCP — wraps ClinicalTrials.gov API v2 (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"clinicaltrials": {
"url": "https://gateway.pipeworx.io/clinicaltrials/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Clinicaltrials data" })
The gateway picks the right tool and fills the arguments automatically.
MIT