From 09012157c84b61ea067bf2c0397a948de6ac9688 Mon Sep 17 00:00:00 2001 From: RipperX Date: Sat, 9 May 2026 13:33:06 -0700 Subject: [PATCH] feat(tensorfeed): add FDA regulatory + safety MCP connector Adds TensorFeed (https://tensorfeed.ai) as a life-sciences marketplace plugin filling the FDA regulatory/safety gap not covered by the existing connectors (pubmed, biorxiv, clinical-trials, chembl, open-targets, etc focus on research/literature/genomics; cortellis covers global regulatory intelligence as a paid commercial product). The TensorFeed MCP server at https://tensorfeed.ai/api/mcp exposes five FDA-specific tools wrapping openFDA endpoints: - query_fda_drug_events FAERS adverse event reports (patient demo + drug + reaction + outcome + seriousness) - query_fda_drug_labels SPL prescription/OTC drug labels (indications, dosage, warnings, contraind) - query_fda_drug_recalls FDA drug enforcement reports (Class I/II/III + reason + distribution) - query_fda_food_recalls FDA food enforcement reports - query_fda_device_events MAUDE medical device adverse events Plus 12 adjacent agent tools across SEC EDGAR (life-sciences company filings), BLS/FRED macroeconomic indicators, MITRE CVE / CISA KEV / FIRST.org EPSS / OSV.dev (biotech IT security), and live AI news + model pricing. 17 tools total in one connector. License posture: openFDA is CC0 1.0 Universal Dedication (FDA waiver of all copyright); SEC/BLS/FRED/MITRE/CISA are US Government public domain; commercial redistribution permitted across the surface; full attribution preserved on every response per the upstream policies. No auth required for these tools (free tier). Premium endpoints (LLM-ready transforms with derived fields and ~80-99% token reduction) are available separately at the REST layer; the MCP server scopes to free tools in v1. --- .claude-plugin/marketplace.json | 7 +++++++ tensorfeed/.claude-plugin/plugin.json | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 tensorfeed/.claude-plugin/plugin.json diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index c612152..b650a32 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -179,6 +179,13 @@ "description": "AdisInsight MCP server by Springer Nature for drug development pipeline, clinical trials, and deals intelligence", "category": "life-sciences", "tags": ["drug-development", "pipeline", "clinical-trials", "deals"] + }, + { + "name": "tensorfeed", + "source": "./tensorfeed", + "description": "FDA regulatory + safety data: FAERS adverse events, SPL drug labels, drug enforcement reports (recalls), food recalls, MAUDE medical device events. Plus adjacent agent tools across SEC EDGAR, BLS/FRED macro indicators, MITRE CVE/CISA KEV/EPSS/OSV.dev for biotech IT, and live AI news + model pricing.", + "category": "life-sciences", + "tags": ["fda", "regulatory", "safety", "adverse-events", "recalls", "openfda"] } ] } diff --git a/tensorfeed/.claude-plugin/plugin.json b/tensorfeed/.claude-plugin/plugin.json new file mode 100644 index 0000000..f26ed39 --- /dev/null +++ b/tensorfeed/.claude-plugin/plugin.json @@ -0,0 +1,15 @@ +{ + "name": "tensorfeed", + "version": "1.0.0", + "description": "FDA regulatory + safety data for life sciences agents. Query FDA FAERS adverse events, SPL drug labels, drug enforcement reports (recalls), food recalls, and MAUDE medical device events through openFDA. Also exposes adjacent agent tools: SEC EDGAR full-text search and submissions for life-sciences company filings, BLS/FRED macroeconomic indicators, MITRE CVE / CISA KEV / FIRST.org EPSS / OSV.dev for biotech IT security, and live AI news + model pricing across providers.", + "author": { + "name": "TensorFeed", + "url": "https://tensorfeed.ai" + }, + "mcpServers": { + "TensorFeed": { + "type": "http", + "url": "https://tensorfeed.ai/api/mcp" + } + } +}