ct_competitive_landscape

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

Map registered interventional trials for a condition and optional intervention across sponsors, phases, statuses, and interventions. The output reflects a bounded registry sample, not market share, scientific differentiation, or an exhaustive private pipeline.

Parameters

NameTypeRequiredDescription
conditionstringyes
interventionstringno
statusstringno
phasestringno
sample_sizenumberno

Example call

Arguments

{
  "condition": "obesity",
  "intervention": "GLP-1 receptor agonist",
  "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_competitive_landscape","arguments":{"condition":"obesity","intervention":"GLP-1 receptor agonist","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_competitive_landscape', {
  "condition": "obesity",
  "intervention": "GLP-1 receptor agonist",
  "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