orange_book_patent_expirations
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
When do the patents on a drug expire — the listed Orange Book patent expiration dates for a brand or ingredient, in order, with the earliest and latest across the whole schedule. Ask by drug alone (“Xarelto”, “semaglutide”) to get its full expiry schedule; add from_date/to_date only when you actually want a window, and anything the window excludes is counted and dated back to you so a filtered view is never mistaken for the full picture. Covers small-molecule drugs; biologics are in the Purple Book. Dates are sponsor-submitted FDA listings and do not establish freedom to operate or a certain launch date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug | string | no | Ingredient, trade name, or applicant, e.g. “Xarelto” or “rivaroxaban”. |
from_date | string | no | Optional window start YYYY-MM-DD. Omit for the drug’s whole schedule. |
to_date | string | no | Optional window end YYYY-MM-DD. Omit for the drug’s whole schedule. |
limit | number | no | Results (1-100, default 25). |
Example call
Arguments
{
"drug": "Xarelto"
}
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_patent_expirations","arguments":{"drug":"Xarelto"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('orange_book_patent_expirations', {
"drug": "Xarelto"
});
More examples
{
"drug": "Ozempic",
"limit": 100
}
{
"from_date": "2026-01-01",
"to_date": "2028-12-31",
"drug": "apixaban",
"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.