@insnapsprakhar/fda-approvals-mcp
v0.1.0
Published
npx launcher for FDA Approvals & Recalls MCP — hosted on Cloudflare Workers. Drug approvals, device 510(k) clearances, recalls, and adverse-event reports
Maintainers
Readme
@insnapsprakhar/fda-approvals-mcp
npx-installable launcher for FDA Approvals & Recalls — a hosted MCP server on Cloudflare Workers.
Drug approvals, device 510(k) clearances, recalls, and adverse-event reports. Wraps the openFDA free public API.
Install / use directly
npx -y @insnapsprakhar/fda-approvals-mcpThat's it. The package shells out to mcp-remote and points it at the hosted endpoint:
https://fda-approvals-mcp.atlasword.workers.dev/mcpMCP client config
Cursor / Claude Desktop / Cline / Windsurf
{
"mcpServers": {
"fda-approvals": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/fda-approvals-mcp"]
}
}
}With a paid API key (optional)
The free tier is anonymous (~100 calls/month/IP). For higher limits, grab a key
from https://fda-approvals-mcp.atlasword.workers.dev and pass it via env:
{
"mcpServers": {
"fda-approvals": {
"command": "npx",
"args": ["-y", "@insnapsprakhar/fda-approvals-mcp", "--header", "Authorization:Bearer ${MCP_KEY}"],
"env": { "MCP_KEY": "mck_..." }
}
}
}Direct HTTP (no Node)
curl -sS -X POST https://fda-approvals-mcp.atlasword.workers.dev/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Source
- Source repo: https://github.com/guptaprakhariitr/fda-approvals-mcp
- All 17 MCPs: https://mcp-hub.atlasword.workers.dev
- License: MIT
