pharma_indication_landscape
Pack: pharma-intel · Endpoint: https://gateway.pipeworx.io/pharma-intel/mcp
Build a disease-area landscape from registered interventional trials, FDA indication-label matches, and PubMed literature. Returns sponsor, phase, status, intervention, approved-label, and publication evidence for indication research.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
condition | string | yes | Disease or condition. |
intervention | string | no | Optional drug, modality, or intervention filter. |
Example call
Arguments
{
"condition": "cystic fibrosis",
"intervention": "gene therapy"
}
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_indication_landscape","arguments":{"condition":"cystic fibrosis","intervention":"gene therapy"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pharma_indication_landscape', {
"condition": "cystic fibrosis",
"intervention": "gene therapy"
});
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.