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

NameTypeRequiredDescription
querystringnoBrand or device description.
companystringno
primary_distringno
product_codestringno
limitnumberno

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.

Regenerated from source · build July 29, 2026