ct_sponsor_pipeline

Pack: clinicaltrials · Endpoint: https://gateway.pipeworx.io/clinicaltrials/mcp

Summarize a sponsor’s ClinicalTrials.gov portfolio by phase, status, condition, and intervention from a bounded relevance-ranked sample, while reporting the full matching count. Registration does not establish asset ownership, probability of success, or commercial value.

Parameters

NameTypeRequiredDescription
sponsorstringyes
statusstringno
phasestringno
sample_sizenumberno

Example call

Arguments

{
  "sponsor": "Eli Lilly and Company",
  "status": "RECRUITING,ACTIVE_NOT_RECRUITING",
  "sample_size": 100
}

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_pipeline","arguments":{"sponsor":"Eli Lilly and Company","status":"RECRUITING,ACTIVE_NOT_RECRUITING","sample_size":100}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ct_sponsor_pipeline', {
  "sponsor": "Eli Lilly and Company",
  "status": "RECRUITING,ACTIVE_NOT_RECRUITING",
  "sample_size": 100
});

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.

Regenerated from source · build August 1, 2026