fda_device_establishment_search

Pack: fda-devices · Endpoint: https://gateway.pipeworx.io/fda-devices/mcp

Search FDA device registration/listing data by firm, registration number, product code, or listing number. Registration/listing does not mean FDA approval, clearance, certification, or endorsement.

Parameters

NameTypeRequiredDescription
firmstringno
registration_numberstringno
product_codestringno
listing_numberstringno
limitnumberno

Example call

Arguments

{
  "firm": "Boston Scientific",
  "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_establishment_search","arguments":{"firm":"Boston Scientific","limit":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fda_device_establishment_search', {
  "firm": "Boston Scientific",
  "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