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
| Name | Type | Required | Description |
|---|---|---|---|
firm | string | yes | Firm name substring, e.g. “Intas”. |
since | string | no | Only count events on/after this date, YYYY-MM-DD. |
limit | number | no | Rows to scan per source (default 200, max ${MAX_ROWS}). |
_apiKey | string | no |
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.