ct_sponsor_activity
Pack: clinicaltrials · Endpoint: https://gateway.pipeworx.io/clinicaltrials/mcp
Track a sponsor’s newly registered studies, first-posted results, or study updates within a verifiable date window. Registry activity is not necessarily a corporate disclosure or material event.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sponsor | string | yes | |
date_type | string | no | |
since | string | yes | |
until | string | no | |
limit | number | no |
Example call
Arguments
{
"sponsor": "Eli Lilly and Company",
"date_type": "last_update",
"since": "2026-07-01",
"until": "2026-07-31",
"limit": 50
}
curl
curl -X POST https://gateway.pipeworx.io/clinicaltrials/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ct_sponsor_activity","arguments":{"sponsor":"Eli Lilly and Company","date_type":"last_update","since":"2026-07-01","until":"2026-07-31","limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ct_sponsor_activity', {
"sponsor": "Eli Lilly and Company",
"date_type": "last_update",
"since": "2026-07-01",
"until": "2026-07-31",
"limit": 50
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clinicaltrials": {
"url": "https://gateway.pipeworx.io/clinicaltrials/mcp"
}
}
}
See Getting Started for client-specific install steps.