fda_device_adverse_events

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

Search FDA MAUDE medical-device reports by manufacturer, brand/device, product code, event type, or PMA/510(k) number. MAUDE reports are unverified signals: they cannot establish causation, incidence, prevalence, or comparative safety.

Parameters

NameTypeRequiredDescription
devicestringnoBrand or generic device name.
manufacturerstringnoManufacturer name.
product_codestringnoExact product code.
event_typestringnoDeath, Injury, Malfunction, or Other.
application_numberstringnoPMA or 510(k) number.
from_datestringnoEarliest FDA receive date, YYYY-MM-DD.
limitnumbernoResults (1-50, default 10).

Example call

Arguments

{
  "product_code": "MDS",
  "from_date": "2026-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_adverse_events","arguments":{"product_code":"MDS","from_date":"2026-01-01","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fda_device_adverse_events', {
  "product_code": "MDS",
  "from_date": "2026-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.

Regenerated from source · build July 27, 2026