ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-fda

US FDA open data — adverse drug event reports, drug labeling/package inserts, and food recall enforcement actions

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/b-gutman/pipeworx-fda
Or

FDA Open Data

Search the US Food and Drug Administration's public databases. Pull adverse drug event reports (FAERS), look up drug labeling and package inserts, and browse food recall enforcement actions. All data is open and requires no API key.

Tools

ToolDescription
search_drug_eventsSearch FDA adverse drug event (FAERS) reports by drug name, reaction, or keyword
search_drug_labelsSearch drug labeling / package inserts by brand name, generic name, or active ingredient
search_food_recallsSearch food recall enforcement actions by product name, company, or reason

Use cases

  • Investigating reported side effects for a specific medication
  • Looking up official prescribing information and contraindications
  • Monitoring food recalls for safety-critical applications
  • Pharmacovigilance research across the FAERS database

Example: adverse events for metformin

curl -s -X POST https://gateway.pipeworx.io/fda/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_drug_events","arguments":{"query":"metformin","limit":3}}}'

Returns reported reactions, drug dosage info, patient demographics, and outcome classifications.

MCP config

{
  "mcpServers": {
    "pipeworx-fda": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/fda/mcp"]
    }
  }
}

Metadata

Author@b-gutman
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-b-gutman-pipeworx-fda": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.