orange_book_generic_entry_timeline
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
Chronologically summarize FDA-approved ANDA applications matching an ingredient or trade name, deduplicated across strengths and products. Returns first approval dates, applicants, dosage forms, TE codes, and active-product counts for generic-entry analysis.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug | string | yes | |
include_discontinued | boolean | no | Include applications with only DISCN products (default true). |
limit | number | no | Unique ANDA applications (1-100, default 50). |
Example call
Arguments
{
"drug": "Eliquis",
"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_generic_entry_timeline","arguments":{"drug":"Eliquis","limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('orange_book_generic_entry_timeline', {
"drug": "Eliquis",
"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.