orange_book_loss_of_exclusivity_profile
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
Build an FDA Orange Book loss-of-exclusivity evidence profile for a drug. Returns reference applications, approved ANDA counts and timing, plus active and elapsed listed patent and regulatory-exclusivity date ranges for LOE diligence.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug | string | yes | Ingredient or trade name. |
as_of_date | string | no | YYYY-MM-DD cutoff for active versus elapsed listings (default today). |
limit | number | no | Rows per evidence list (1-100, default 50). |
Example call
Arguments
{
"drug": "Eliquis",
"as_of_date": "2026-08-05",
"limit": 50
}
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_loss_of_exclusivity_profile","arguments":{"drug":"Eliquis","as_of_date":"2026-08-05","limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('orange_book_loss_of_exclusivity_profile', {
"drug": "Eliquis",
"as_of_date": "2026-08-05",
"limit": 50
});
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.