pharma_pipeline_catalysts
Pack: pharma-intel · Endpoint: https://gateway.pipeworx.io/pharma-intel/mcp
Build a sponsor catalyst-monitoring view from ClinicalTrials.gov and Drugs@FDA. Returns upcoming Phase 2/3 primary-completion dates, recently completed trials for results/disclosure follow-up, and sponsor-linked FDA applications for event-driven biotech research.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sponsor | string | yes | Pharmaceutical company or sponsor name (e.g., “Pfizer”, “Moderna”, “Vertex Pharmaceuticals”) |
months_ahead | number | no | Catalyst-calendar horizon in months. Default 12, max 24. |
Example call
Arguments
{
"sponsor": "Pfizer"
}
curl
curl -X POST https://gateway.pipeworx.io/pharma-intel/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pharma_pipeline_catalysts","arguments":{"sponsor":"Pfizer"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pharma_pipeline_catalysts', {
"sponsor": "Pfizer"
});
More examples
{
"sponsor": "Vertex Pharmaceuticals",
"months_ahead": 6
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pharma-intel": {
"url": "https://gateway.pipeworx.io/pharma-intel/mcp"
}
}
}
See Getting Started for client-specific install steps.