fda_firm_risk_profile

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

One-call FDA regulatory risk profile for a manufacturer: inspection history with the NAI/VAI/OAI split, the CFR sections it is most often cited under, compliance actions taken against it, and import refusals at the border. Resolves the firm name to its FDA establishment identifiers (FEI) so you can see whether several sites are involved. Use this for supplier due-diligence or to check a pharma name before an investment or sourcing decision.

Parameters

NameTypeRequiredDescription
firmstringyesFirm name substring, e.g. “Intas”.
sincestringnoOnly count events on/after this date, YYYY-MM-DD.
limitnumbernoRows to scan per source (default 200, max ${MAX_ROWS}).
_apiKeystringno

Example call

Arguments

{
  "firm": "Intas"
}

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_firm_risk_profile","arguments":{"firm":"Intas"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fda_firm_risk_profile', {
  "firm": "Intas"
});

More examples

{
  "firm": "Sun Pharmaceutical",
  "since": "2020-01-01",
  "limit": 200
}

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