fda-data-mcp
v0.4.1
Published
Wrapper-first install package for the hosted FDA Data MCP endpoint.
Maintainers
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.

Quick Links
- Website: regdatalab.com
- MCP endpoint:
https://www.regdatalab.com/mcp - Discovery metadata:
https://www.regdatalab.com/.well-known/mcp.json - Connect guide: regdatalab.com/connect.md
- Product docs: regdatalab.com/docs
- Pricing: regdatalab.com/pricing
- Signup: regdatalab.com/signup
- Changelog: CHANGELOG.md
- Releases: github.com/medley/fda-data-mcp/releases
- Wrapper package source:
package.json
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, orOAI? - 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
Add this to your Claude Desktop MCP config:
{
"mcpServers": {
"fda-data": {
"url": "https://www.regdatalab.com/mcp?apiKey=YOUR_API_KEY"
}
}
}Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Restart Claude Desktop after saving.
Claude Cowork
- Go to Settings or Customize, then Connectors
- Add a custom connector named
FDA Data - Paste this URL (replace with your key):
https://www.regdatalab.com/mcp?apiKey=YOUR_API_KEY- Save and start a new project chat with the connector enabled
Claude Code
claude mcp add fda-data \
"https://www.regdatalab.com/mcp?apiKey=YOUR_API_KEY" \
--transport http \
--scope userVerify with /mcp. You should see fda-data and the manufacturing-first toolset.
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"fda-data": {
"url": "https://www.regdatalab.com/mcp?apiKey=YOUR_API_KEY"
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"fda-data": {
"url": "https://www.regdatalab.com/mcp?apiKey=YOUR_API_KEY"
}
}
}ChatGPT / OpenAI API
from openai import OpenAI
client = OpenAI()
response = client.responses.create(
model="gpt-4.1",
tools=[{
"type": "mcp",
"server_label": "fda-data",
"server_url": "https://www.regdatalab.com/mcp",
"require_approval": "never",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}],
input="Give me a manufacturing risk summary for Pfizer"
)
print(response.output_text)VS Code One-Click Install
Generic MCP clients
- URL:
https://www.regdatalab.com/mcp?apiKey=YOUR_API_KEY - Or with header:
Authorization: Bearer YOUR_API_KEYtohttps://www.regdatalab.com/mcp - Discovery file:
https://www.regdatalab.com/.well-known/mcp.json
npx wrapper (fallback for older clients)
For clients that don't support native HTTP URLs, use the stdio wrapper:
FDA_DATA_API_KEY=YOUR_API_KEY npx -y fda-data-mcpOr in a JSON config:
{
"mcpServers": {
"fda-data": {
"command": "npx",
"args": ["-y", "fda-data-mcp"],
"env": {
"FDA_DATA_API_KEY": "YOUR_API_KEY"
}
}
}
}The wrapper is a zero-dependency stdio-to-HTTP proxy:
- source:
bin/fda-data-mcp.js - proxy:
lib/stdio-proxy.js
If you do not have an API key yet, sign up here:
- regdatalab.com/signup
- includes 300 free credits/month
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 as
?apiKey=YOUR_API_KEYin the URL (simplest) - Or use the
Authorization: Bearer YOUR_API_KEYheader - Or set
FDA_DATA_API_KEY=YOUR_API_KEYwhen using the npx 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
- Docs: regdatalab.com/docs
- Connect: regdatalab.com/connect.md
- Email: [email protected]
Changelog and Releases
- Version history lives in CHANGELOG.md
- Public release notes live on the GitHub releases page
Security
If you find a security issue, do not open a public issue. Use the policy in SECURITY.md.
