fda_postmarket_risk_profile

Pack: openfda · Endpoint: https://gateway.pipeworx.io/openfda/mcp

Combine a drug’s FAERS reporting profile, label warning fields, and FDA recall records for review routing. This is not a validated safety comparison, causal assessment, incidence estimate, or substitute for FDA communications and clinical review.

Parameters

NameTypeRequiredDescription
drugstringyes
from_datestringno
to_datestringno
reaction_limitnumberno
recall_limitnumberno

Example call

Arguments

{
  "drug": "Ozempic",
  "from_date": "2025-01-01",
  "to_date": "2025-12-31"
}

curl

curl -X POST https://gateway.pipeworx.io/openfda/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fda_postmarket_risk_profile","arguments":{"drug":"Ozempic","from_date":"2025-01-01","to_date":"2025-12-31"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('fda_postmarket_risk_profile', {
  "drug": "Ozempic",
  "from_date": "2025-01-01",
  "to_date": "2025-12-31"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "openfda": {
      "url": "https://gateway.pipeworx.io/openfda/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 3, 2026