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

NameTypeRequiredDescription
firmstringnoFirm legal-name substring.
statestringnoTwo-letter US state code.
countrystringnoCountry name.
action_typestringnoAction type substring, e.g. “Warning Letter”.
product_typestringnoe.g. “Drugs”, “Devices”.
sincestringnoEarliest action date, YYYY-MM-DD.
untilstringnoLatest action date, YYYY-MM-DD.
fiscal_yearstringnoFDA fiscal year.
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_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.

Regenerated from source · build August 29, 2026