orange_book_reference_drug_landscape
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/orange_book_reference_drug_landscape for the schema, then POST the same URL with its arguments for the data.
Map FDA Orange Book reference listed drugs and reference standards to approved ANDA competition by dosage-form/route and therapeutic-equivalence code. Returns reference applications, ANDA counts and applicants, and TE-code groupings.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug | string | yes | |
include_discontinued | boolean | no | Include DISCN products (default false). |
limit | number | no | Dosage-form/route groups (1-100, default 25). |
Example call
Arguments
{
"drug": "Eliquis",
"limit": 25
}
curl
curl -X POST https://gateway.pipeworx.io/fda-drug-competition/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"orange_book_reference_drug_landscape","arguments":{"drug":"Eliquis","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('orange_book_reference_drug_landscape', {
"drug": "Eliquis",
"limit": 25
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fda-drug-competition": {
"url": "https://gateway.pipeworx.io/fda-drug-competition/mcp"
}
}
}
See Getting Started for client-specific install steps.