fda_483_citations

Pack: fda-inspections · Endpoint: https://gateway.pipeworx.io/fda-inspections/mcp

Individual Form 483 observations cited during FDA inspections — the specific CFR reference and what the investigator actually wrote. Use this to see WHY a site was cited, not just that it was. Search by firm, country, state or date range. Source: FDA Data Dashboard (OII).

Parameters

NameTypeRequiredDescription
firmstringnoFirm legal-name substring.
statestringnoTwo-letter US state code.
countrystringnoCountry name, e.g. “India”.
cfrstringnoCFR citation substring, e.g. “211.192”.
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": "Sun Pharma",
  "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_483_citations","arguments":{"firm":"Sun Pharma","limit":25}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fda_483_citations', {
  "firm": "Sun Pharma",
  "limit": 25
});

More examples

{
  "country": "India",
  "cfr": "211.192",
  "limit": 25
}

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