pharma_safety_report

Pack: pharma-intel · Endpoint: https://gateway.pipeworx.io/pharma-intel/mcp

Check adverse event frequency, severity patterns, and contraindications for a drug. Returns safety profiles, risk data, and recall history. E.g., search “aspirin”.

Parameters

NameTypeRequiredDescription
drug_namestringyesDrug name (brand or generic)

Example call

Arguments

{
  "drug_name": "aspirin"
}

curl

curl -X POST https://gateway.pipeworx.io/pharma-intel/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pharma_safety_report","arguments":{"drug_name":"aspirin"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('pharma_safety_report', {
  "drug_name": "aspirin"
});

More examples

{
  "drug_name": "warfarin"
}

Response shape

Always returns: analysis, drug_name, adverse_events, top_reactions, recalls, drug_interactions

FieldTypeDescription
analysisstringAnalysis type identifier
drug_namestringDrug name queried
adverse_eventsobject | nullFDA adverse events data
top_reactionsobject | nullTop adverse reactions by frequency
recallsobject | nullDrug recalls data
drug_interactionsobject | nullKnown drug interactions
Full JSON Schema
{
  "type": "object",
  "properties": {
    "analysis": {
      "type": "string",
      "enum": [
        "safety_report"
      ],
      "description": "Analysis type identifier"
    },
    "drug_name": {
      "type": "string",
      "description": "Drug name queried"
    },
    "adverse_events": {
      "type": [
        "object",
        "null"
      ],
      "description": "FDA adverse events data"
    },
    "top_reactions": {
      "type": [
        "object",
        "null"
      ],
      "description": "Top adverse reactions by frequency"
    },
    "recalls": {
      "type": [
        "object",
        "null"
      ],
      "description": "Drug recalls data"
    },
    "drug_interactions": {
      "type": [
        "object",
        "null"
      ],
      "description": "Known drug interactions"
    }
  },
  "required": [
    "analysis",
    "drug_name",
    "adverse_events",
    "top_reactions",
    "recalls",
    "drug_interactions"
  ]
}

Connect

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

{
  "mcpServers": {
    "pharma-intel": {
      "url": "https://gateway.pipeworx.io/pharma-intel/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026