fda_device_recalls
Pack: fda-devices · Endpoint: https://gateway.pipeworx.io/fda-devices/mcp
Search FDA medical-device recall records by firm, product, product code, K number, status, or date. A recall record describes a correction/removal action and does not by itself establish patient harm.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Product or reason text. |
firm | string | no | Recalling firm substring. |
product_code | string | no | Exact FDA product code. |
k_number | string | no | Exact related K number. |
status | string | no | Recall status, e.g. Ongoing or Terminated. |
from_date | string | no | Earliest posted date, YYYY-MM-DD. |
limit | number | no | Results (1-100, default 20). |
Example call
Arguments
{
"firm": "Medtronic",
"from_date": "2025-01-01",
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/fda-devices/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fda_device_recalls","arguments":{"firm":"Medtronic","from_date":"2025-01-01","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_device_recalls', {
"firm": "Medtronic",
"from_date": "2025-01-01",
"limit": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fda-devices": {
"url": "https://gateway.pipeworx.io/fda-devices/mcp"
}
}
}
See Getting Started for client-specific install steps.