fda_import_refusals
Pack: fda-inspections · Endpoint: https://gateway.pipeworx.io/fda-inspections/mcp
Shipments refused entry to the US by FDA at the border, with the refusal charges (the reason), product code and date. A leading indicator of supply risk for a foreign manufacturer. Search by firm, country, product or date range. Source: FDA Data Dashboard (OII).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
firm | string | no | Firm name substring (this resource keys on FirmName). |
state | string | no | Two-letter US state code. |
country | string | no | Country of origin, e.g. “India”. |
product | string | no | Product-code description substring, e.g. “Antibiotic”. |
since | string | no | Earliest refusal date, YYYY-MM-DD. |
until | string | no | Latest refusal date, YYYY-MM-DD. |
limit | number | no | Rows to return (default 50, max ${MAX_ROWS}). |
_apiKey | string | no |
Example call
Arguments
{
"country": "India",
"limit": 25
}
curl
curl -X POST https://gateway.pipeworx.io/fda-inspections/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fda_import_refusals","arguments":{"country":"India","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_import_refusals', {
"country": "India",
"limit": 25
});
More examples
{
"firm": "Intas",
"since": "2024-01-01",
"limit": 50
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fda-inspections": {
"url": "https://gateway.pipeworx.io/fda-inspections/mcp"
}
}
}
See Getting Started for client-specific install steps.