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
| Name | Type | Required | Description |
|---|---|---|---|
firm | string | no | Firm legal-name substring. |
state | string | no | Two-letter US state code. |
country | string | no | Country name, e.g. “India”. |
cfr | string | no | CFR citation substring, e.g. “211.192”. |
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": "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.