fda_device_udi_search
Pack: fda-devices · Endpoint: https://gateway.pipeworx.io/fda-devices/mcp
Search FDA GUDID/UDI records by brand, company, device identifier, or product code. A UDI record describes an identified device in GUDID; it does not establish current sales, availability, clearance, approval, or safety.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Brand or device description. |
company | string | no | |
primary_di | string | no | |
product_code | string | no | |
limit | number | no |
Example call
Arguments
{
"company": "Medtronic",
"limit": 20
}
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_udi_search","arguments":{"company":"Medtronic","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_device_udi_search', {
"company": "Medtronic",
"limit": 20
});
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.