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

NameTypeRequiredDescription
firmstringnoFirm legal-name substring, e.g. “Intas” or “Sun Pharma”.
statestringnoTwo-letter US state code, e.g. “NJ”.
countrystringnoCountry name as FDA spells it, e.g. “India”, “China”.
classificationstringnoFinal classification: NAI, VAI or OAI. OAI is the one that signals enforcement risk.
product_typestringnoe.g. “Drugs”, “Devices”, “Foods”, “Biologics”.
sincestringnoEarliest inspection end date, YYYY-MM-DD.
untilstringnoLatest inspection end date, YYYY-MM-DD.
fiscal_yearstringnoFDA fiscal year, e.g. “2026”.
limitnumbernoRows to return (default 50, max ${MAX_ROWS}).
_apiKeystringno

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.

Regenerated from source · build August 29, 2026