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-data-mcp

v0.3.0

Published

Wrapper-first install package for the hosted FDA Data MCP endpoint.

Readme

FDA Data MCP

Hosted MCP server for FDA regulatory, manufacturing, and compliance intelligence.

This is the public install and discovery repo for FDA Data MCP. The live MCP endpoint is hosted at RegDataLab. The private backend, ingestion system, and production data pipeline are not open-sourced here.

Website Connect Guide Release GitHub Pages

FDA Data MCP homepage screenshot

Quick Links

What It Does

FDA Data MCP gives AI agents structured access to FDA data for questions like:

  • Which facilities does this company operate?
  • Has FDA inspected them recently?
  • Were those inspections NAI, VAI, or OAI?
  • Are there recalls, enforcement actions, or import refusals?
  • What does FDA show for 510(k), PMA, Drugs@FDA, NDC, and related regulatory records?

The strongest current use case is manufacturing and compliance intelligence for pharma, biotech, and medtech teams.

Quick Start

Claude Desktop / Cowork

FDA_DATA_API_KEY=YOUR_API_KEY npx -y fda-data-mcp

This is the best default path today for:

  • Claude Desktop
  • Cowork
  • Cursor
  • Windsurf
  • other stdio MCP clients

Cowork uses the MCPs you already connected in Claude Desktop, so if Desktop is configured, Cowork can use the same FDA Data MCP connection.

Claude Desktop config

Add this to your MCP config:

{
  "mcpServers": {
    "fda-data": {
      "command": "npx",
      "args": ["-y", "fda-data-mcp"],
      "env": {
        "FDA_DATA_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Claude Code / native remote HTTP

claude mcp add fda-data https://www.regdatalab.com/mcp --transport http --header "Authorization: Bearer YOUR_API_KEY"

Use this when you want the hosted MCP directly instead of the wrapper.

OpenAI / generic MCP clients

  • URL: https://www.regdatalab.com/mcp
  • Auth header: Authorization: Bearer YOUR_API_KEY
  • Discovery file: https://www.regdatalab.com/.well-known/mcp.json

VS Code One-Click Install

Install in VS Code

This uses the hosted MCP endpoint without running the private backend locally.

Thin npm Wrapper

The public wrapper is already published on npm:

FDA_DATA_API_KEY=YOUR_API_KEY npx -y fda-data-mcp

It is a thin stdio wrapper around mcp-remote:

Local example from a cloned repo:

FDA_DATA_API_KEY=YOUR_API_KEY node bin/fda-data-mcp.js

If you do not have an API key yet, sign up here:

Example Prompts

  • Give me a manufacturing risk summary for Pfizer.
  • Show recent VAI and OAI inspections for Moderna.
  • Summarize recalls, compliance actions, and import refusals for Thermo Fisher.
  • What does FDA have on this company across facilities, inspections, and enforcement?

Data Coverage

FDA Data MCP covers live hosted access to datasets including:

  • FDA inspections
  • FDA citations
  • FDA compliance actions
  • FDA import refusals
  • recalls and enforcement
  • 510(k) clearances
  • PMA approvals
  • Drugs@FDA
  • NDC directory
  • drug labels
  • device registrations and listings
  • device UDI
  • drug shortages

For the canonical and current product surface, use:

Auth and Pricing

  • Sign up for an API key at regdatalab.com/signup
  • Pass the key in the Authorization: Bearer YOUR_API_KEY header
  • Or set FDA_DATA_API_KEY=YOUR_API_KEY when using the wrapper
  • Free and paid plans are listed at regdatalab.com/pricing

Why This Repo Exists

This repo is intentionally public and lightweight so it can serve as:

  • the GitHub landing page for the hosted MCP
  • a stable place for setup examples
  • a future home for marketplace metadata and install helpers

The production backend and ingestion engine live separately.

Support

Changelog and Releases

Security

If you find a security issue, do not open a public issue. Use the policy in SECURITY.md.