fda_compliance_actions
Pack: fda-inspections · Endpoint: https://gateway.pipeworx.io/fda-inspections/mcp
FDA compliance and enforcement actions taken against a firm — warning letters, injunctions, seizures, debarments — with the action type and the date taken. Search by firm, country, state, product type 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. |
action_type | string | no | Action type substring, e.g. “Warning Letter”. |
product_type | string | no | e.g. “Drugs”, “Devices”. |
since | string | no | Earliest action date, YYYY-MM-DD. |
until | string | no | Latest action date, YYYY-MM-DD. |
fiscal_year | string | no | FDA fiscal year. |
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_compliance_actions","arguments":{"firm":"Intas","limit":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_compliance_actions', {
"firm": "Intas",
"limit": 25
});
More examples
{
"action_type": "Warning Letter",
"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.