fda_device_event_counts

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

Aggregate MAUDE reports for a device query by event type, manufacturer, product code, or receive date. Counts reflect reporting and database artifacts—not event rates or causal risk—and must not be compared without exposure denominators.

Parameters

NameTypeRequiredDescription
querystringnoOptional raw openFDA MAUDE filter, e.g. ‘date_received:[20250101+TO+20261231]’. Omit to rank across all reports.
count_fieldstringyesWhat to rank by. For “which DEVICES had the most reports” use device.generic_name.exact (device type) or device.brand_name.exact (specific product).
limitnumbernoBuckets (1-100, default 20).

Example call

Arguments

{
  "count_field": "device.generic_name.exact",
  "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_event_counts","arguments":{"count_field":"device.generic_name.exact","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fda_device_event_counts', {
  "count_field": "device.generic_name.exact",
  "limit": 10
});

More examples

{
  "count_field": "device.brand_name.exact",
  "limit": 10
}
{
  "query": "device.device_report_product_code:MDS",
  "count_field": "event_type.exact",
  "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 September 10, 2026