fda_device_company_profile

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

Build a bounded FDA regulatory snapshot for one device company across 510(k), PMA, recalls, and MAUDE. Dataset name matching is imperfect and MAUDE counts are signals, not safety rates.

Parameters

NameTypeRequiredDescription
companystringyesCompany/manufacturer name.
limit_per_datasetnumbernoRows per dataset (1-20, default 5).

Example call

Arguments

{
  "company": "Dexcom",
  "limit_per_dataset": 5
}

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_company_profile","arguments":{"company":"Dexcom","limit_per_dataset":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fda_device_company_profile', {
  "company": "Dexcom",
  "limit_per_dataset": 5
});

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