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

NameTypeRequiredDescription
firmstringnoFirm name substring (this resource keys on FirmName).
statestringnoTwo-letter US state code.
countrystringnoCountry of origin, e.g. “India”.
productstringnoProduct-code description substring, e.g. “Antibiotic”.
sincestringnoEarliest refusal date, YYYY-MM-DD.
untilstringnoLatest refusal date, YYYY-MM-DD.
limitnumbernoRows to return (default 50, max ${MAX_ROWS}).
_apiKeystringno

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.

Regenerated from source · build August 29, 2026