fda_compliance_actions
ActiveTool of FDA Data MCP
Search FDA compliance enforcement actions (Compliance Dashboard data, not available in openFDA API): Warning Letters, Seizures, and Injunctions. These are the most serious regulatory outcomes, typically following OAI inspections. Filter by company name, FEI number, action type (Warning Letter/Seizure/Injunction), or date range. Related: fda_inspections (underlying inspection data by FEI), fda_citations (CFR violations cited in these actions).
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"limit": {
"type": "integer",
"default": 100,
"maximum": 500,
"minimum": 1,
"description": "Max results to return (1-500)"
},
"date_to": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"description": "End date for action_taken_date range (YYYY-MM-DD)"
},
"date_from": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"description": "Start date for action_taken_date range (YYYY-MM-DD)"
},
"fei_number": {
"type": "string",
"pattern": "^\\d{1,10}$",
"description": "FDA Establishment Identifier (FEI number)"
},
"action_type": {
"enum": [
"Warning Letter",
"Seizure",
"Injunction"
],
"type": "string",
"description": "Compliance action type"
},
"company_name": {
"type": "string",
"maxLength": 500,
"description": "Company name (fuzzy match)"
}
}
}Parent server
FDA Data MCP
https://github.com/medley/fda-data
1/7 registries