purple_book_product_search
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
Search FDA Purple Book biologic products by proper/proprietary name, applicant, reference product, or BLA. Returns licensure and product-level attributes. A licensed biosimilar is not necessarily launched, available, interchangeable, or substitutable under state law.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Name, applicant, reference product, or BLA substring. |
license_type | string | no | |
include_discontinued | boolean | no | Include discontinued products (default false). |
limit | number | no | Rows (1-100, default 25). |
Example call
Arguments
{
"query": "adalimumab",
"limit": 25
}
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_product_search","arguments":{"query":"adalimumab","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('purple_book_product_search', {
"query": "adalimumab",
"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.