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

NameTypeRequiredDescription
querystringyesName, applicant, reference product, or BLA substring.
license_typestringno
include_discontinuedbooleannoInclude discontinued products (default false).
limitnumbernoRows (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.

Regenerated from source · build July 29, 2026