fda_inspections
Pack: fda-inspections · Endpoint: https://gateway.pipeworx.io/fda-inspections/mcp
FDA inspection results with their final classification — NAI (no action indicated), VAI (voluntary action indicated) or OAI (official action indicated, the serious one). Covers FDA-regulated establishments worldwide (drug, device, food, biologics), not just US sites. Search by firm name (substring), state, country, product type or date range. Source: FDA Data Dashboard (OII). This is inspection OUTCOME data — openFDA does not carry it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
firm | string | no | Firm legal-name substring, e.g. “Intas” or “Sun Pharma”. |
state | string | no | Two-letter US state code, e.g. “NJ”. |
country | string | no | Country name as FDA spells it, e.g. “India”, “China”. |
classification | string | no | Final classification: NAI, VAI or OAI. OAI is the one that signals enforcement risk. |
product_type | string | no | e.g. “Drugs”, “Devices”, “Foods”, “Biologics”. |
since | string | no | Earliest inspection end date, YYYY-MM-DD. |
until | string | no | Latest inspection end date, YYYY-MM-DD. |
fiscal_year | string | no | FDA fiscal year, e.g. “2026”. |
limit | number | no | Rows to return (default 50, max ${MAX_ROWS}). |
_apiKey | string | no |
Example call
Arguments
{
"firm": "Intas",
"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_inspections","arguments":{"firm":"Intas","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_inspections', {
"firm": "Intas",
"limit": 25
});
More examples
{
"country": "India",
"classification": "OAI",
"since": "2025-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.