npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

fda-mcp-server

v0.0.26

Published

11-tool MCP server for FDA enforcement intelligence. Free: recalls, device events, company profiles. Pro: CSA risk, citation analysis, supplier qualification, consent decrees. Enterprise: CSA recommendation, IEC 62304 SDLC, QMSR gap analysis, CAPA assessm

Readme

fda-mcp-server

FDA compliance intelligence tools for Claude, Cursor, and any MCP client. Query recalls, adverse events, warning letters, and CSA risk data directly from your AI assistant.

No API key required for free tools. Subscribe for enriched CSA analysis.

What You Can Do

Free — ask Claude things like:

  • "Find Class I device recalls from Medtronic"
  • "Show me adverse events for Philips ventilators"
  • "Pull up the enforcement profile for Exactech"

Pro ($49/mo) — enriched dataset:

  • "Run a CSA risk assessment on Fresenius Kabi"
  • "Generate a supplier qualification report for Baxter International"
  • "Analyze citation patterns for CFR Part 820"

Tools

Free (live openFDA data)

| Tool | What it does | |------|-------------| | search_recalls | Search recalls by product type, classification, firm, state, or date range | | search_device_events | Search MAUDE adverse events by manufacturer, brand, event type, or date | | company_enforcement_profile | Recalls + adverse events (+ warning letters and 483s with Pro key) |

Pro (enriched CSA dataset, API key required)

| Tool | What it does | |------|-------------| | csa_risk_assessment | Risk score with 4.2x escalation multiplier, failure modes, citation breakdown | | citation_analysis | Citation patterns by CFR part, section, and category with CSA percentages | | supplier_qualification_report | Audit-ready qualification brief with risk level and recommendation |

The enriched tools are powered by 1,047 classified warning letters, 6,714 Form 483 observations, 3,600+ extracted citations, and 157 failure modes — all classified for CSA relevance across the QSR-to-QMSR regulatory transition.

Setup

Free (local, no account needed)

Runs locally via npx. No API key, no account, no server.

Claude Desktop — add to Settings > Developer > Edit Config:

{
  "mcpServers": {
    "fda": {
      "command": "npx",
      "args": ["-y", "fda-mcp-server"]
    }
  }
}

Claude Code:

claude mcp add fda -- npx -y fda-mcp-server

Restart your client. You should see search_recalls, search_device_events, and company_enforcement_profile.

Pro (hosted, all 6 tools)

Get an API key at fda-csa-intel.jasencarroll.com. Pro connects to the hosted server over HTTP — no npm install needed.

Claude Desktop — add to Settings > Developer > Edit Config:

{
  "mcpServers": {
    "fda": {
      "type": "streamable-http",
      "url": "https://fda-mcp-server.jasencarroll.com/mcp",
      "headers": {
        "Authorization": "Bearer fda_live_your-key-here"
      }
    }
  }
}

Claude Code:

claude mcp add fda --transport http https://fda-mcp-server.jasencarroll.com/mcp --header "Authorization: Bearer fda_live_your-key-here"

Any MCP client

The server supports two transports:

  • stdio (free tools): npx fda-mcp-server — standard MCP stdio transport
  • HTTP (all tools): POST https://fda-mcp-server.jasencarroll.com/mcp — Streamable HTTP transport with Authorization: Bearer header

Data Sources

Free tools use live public data from the openFDA API (recalls, adverse events). No authentication required.

Pro tools query a curated PostgreSQL database classifying FDA warning letters and 483 observations for CSA relevance based on CFR citations (21 CFR 211.68, 820.70(i), Part 11) and narrative analysis. Dataset maintained at fda_platform.

Self-Hosting

Run enriched tools against your own database instead of using an API key:

{
  "mcpServers": {
    "fda": {
      "command": "npx",
      "args": ["-y", "fda-mcp-server"],
      "env": {
        "DATABASE_URL": "postgresql://localhost:5432/fda_platform"
      }
    }
  }
}

See fda_platform for the database dump and restore instructions.

License

MIT

Author

Jasen Carroll — Quality engineering + software, FDA-regulated industries.

triggered