orange_book_product_search
Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp
Search FDA Orange Book products by ingredient, trade name, applicant, or application number. Returns NDA/ANDA status, therapeutic-equivalence codes, RLD/reference-standard flags, strength, route, and approval date.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Ingredient, trade name, or applicant substring. |
application_number | string | no | Exact NDA/ANDA application number. |
include_discontinued | boolean | no | Include DISCN products (default false). |
limit | number | no | Results (1-100, default 25). |
Example call
Arguments
{
"query": "Eliquis",
"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":"orange_book_product_search","arguments":{"query":"Eliquis","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('orange_book_product_search', {
"query": "Eliquis",
"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.