fda_device_pma_search
Pack: fda-devices · Endpoint: https://gateway.pipeworx.io/fda-devices/mcp
Search FDA Premarket Approval (PMA) decisions and supplements by trade/generic name, applicant, product code, or PMA number. Supplements may represent manufacturing or labeling changes rather than new devices.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
device | string | no | Trade or generic device name substring. |
applicant | string | no | Applicant/company substring. |
product_code | string | no | Exact FDA product code. |
pma_number | string | no | Exact PMA number, optionally including supplement suffix. |
from_date | string | no | Earliest decision date, YYYY-MM-DD. |
to_date | string | no | Latest decision date, YYYY-MM-DD. |
limit | number | no | Results (1-100, default 20). |
Example call
Arguments
{
"applicant": "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_pma_search","arguments":{"applicant":"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_pma_search', {
"applicant": "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.