purple_book_biosimilars
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
List FDA-licensed 351(k) biosimilar and interchangeable products for an optional reference product, applicant, or product name. Approval/licensure does not establish commercial launch or current availability.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | |
include_interchangeable | boolean | no | Include interchangeable products (default true). |
limit | number | no | Rows (1-100, default 50). |
Example call
Arguments
{
"query": "ustekinumab",
"include_interchangeable": true
}
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_biosimilars","arguments":{"query":"ustekinumab","include_interchangeable":true}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('purple_book_biosimilars', {
"query": "ustekinumab",
"include_interchangeable": true
});
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.