purple_book_biosimilar_entry_timeline
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
Chronologically summarize unique FDA-licensed 351(k) BLAs associated with a reference biologic. Returns approval dates, applicants, product names, reference products, and biosimilar versus interchangeable designations for entry analysis.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
reference_product | string | yes | Reference proper/proprietary name or related product name. |
limit | number | no | Unique 351(k) BLAs (1-100, default 50). |
Example call
Arguments
{
"reference_product": "Humira",
"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":"purple_book_biosimilar_entry_timeline","arguments":{"reference_product":"Humira","limit":50}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('purple_book_biosimilar_entry_timeline', {
"reference_product": "Humira",
"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.