The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Biopharma Catalyst MCP listing page.
A forensic biopharma research MCP server — pulls catalyst-grade signals from 6 free, authoritative sources (ClinicalTrials.gov, PubMed, SEC EDGAR, SEC XBRL companyfacts, openFDA, Yahoo Finance) and hands them to your LLM. Includes a server-side aggregator that runs the full forensic workflow in one tool call and returns a deterministic verdict.
Built for the workflow most retail biopharma analysts actually run: a ticker hits the radar, you spend 2–4 hours grinding Google Scholar, FDA pages, EDGAR, and the options chain to decide if the catalyst story holds up. This compresses that to ~30 seconds.
audit_catalystSingle tool, single call, single verdict. Works on any sponsor / drug combination — no hardcoded tickers anywhere.
A CLEAN verdict is the highest praise this tool gives. It means the auditor cross-referenced 9 sources, tried to break the bull thesis, and couldn't (or could only surface secondary concerns that don't outweigh an S-tier bull signal). That's a stronger long signal than a generic "BUY" rating, because failing to break a thesis is harder than confirming it.
The verdict scale:
CLEAN — tried to break the thesis, couldn't. Confidence drops if A-tier concerns surface.FLAG — A-tier bear signal fired without an offsetting S-tier bull. Data ambiguous; look harder.BEAR_SIGNAL — at least one S-tier bear fired (terminated trial, FDA rejection, dilution risk, etc.). Confidence rises with multiple S-tier bears.BLACK_FLAG — Going Concern disclosed by auditors + cash runway under 6 months. Equity at high risk of zero.DISQUALIFIED — insufficient data tied to the company. Try a different drug or query the underlying connectors directly.The math (cash runway, months to catalyst, insider sentiment, ATM IV, catalyst date) is also returned for the user to inspect. The LLM narrates; the verdict is code.
If you'd rather have the LLM run the workflow itself across the individual tools, drop this prompt into your MCP client as a custom instruction or system prompt:
Then ask: audit ticker SRPT, drug elevidys (or whatever).
A CLEAN verdict is the highest praise this tool gives — it means the auditor tried to find a hole in the thesis and couldn't. That's a stronger long signal than a generic bull stamp.
Ten tools — nine raw connectors plus the aggregator:
| Tool | Source | What it does |
|---|---|---|
audit_catalyst | (aggregator) | Headline tool. Runs the full Tactical Auditor workflow against (ticker, drug). Deterministic verdict. |
search_clinical_trials | ClinicalTrials.gov v2 API | Pipeline + status by intervention; flags terminations, withdrawals, completed-without-readout |
search_pubmed | NCBI E-utilities | Recent literature on a drug / mechanism / disease |
get_sec_filings | SEC EDGAR | Last 10 filings (10-K, 10-Q, 8-K, S-1) by ticker |
get_xbrl_facts | SEC XBRL companyfacts | Cash, quarterly burn, runway months, Going Concern flag |
get_insider_transactions | SEC EDGAR Form 4 XML | Role-classified insider transactions (clinical/financial/admin), coordinated exit detection (72h window), Net Insider Sentiment ($), 10b5-1 detection |
get_short_interest | Yahoo Finance | Short % of float, days to cover, MoM delta — feeds SHORT_INTEREST_SPIKE and SHORT_SQUEEZE_POTENTIAL signals |
get_protocol_snapshot | ClinicalTrials.gov v2 API | Trial protocol + amendment proximity (goalpost detection) |
get_market_data | Yahoo Finance | Quote + full options chain (IV, strikes, expirations) |
get_fda_activity | openFDA drugsfda.json | NDA/BLA submissions with decoded status (AP, CRL, WD, etc.); auto-fallback drug→sponsor |
All sources are free, no API keys required.
Add to your MCP client config (e.g. ~/.config/claude/claude_desktop_config.json):
SEC_USER_AGENT is required by SEC EDGAR — use a real contact email or you'll be rate-limited.
For headless runs without an MCP client:
The CLI prints a structured human-readable snapshot — same data the MCP tools expose.
Biopharma research signal lives at the pipeline drug level, not the corporate level. Searching CT.gov for "Pfizer" returns hundreds of unrelated trials across every therapeutic area. Searching for Comirnaty returns the specific vaccine trials that drive regulatory outcomes. Always feed the tools the drug name (brand or generic), and use the ticker only for market data + SEC filings.
Institutional-grade biopharma research requires analyzing the world's largest pipelines. A few examples from live runs:
audit_catalyst("LLY", "Mounjaro", "Eli Lilly")audit_catalyst("PFE", "Comirnaty", "Pfizer")audit_catalyst("MRK", "Keytruda", "Merck")10b5-1 plans don't exempt insider selling from the bear column — management chose to schedule those sales. Real money out the door is real money out the door.
After any change, rebuild and run the MCP stdio smoke test:
For the aggregator specifically:
Both should complete in under 30 seconds against live APIs. If they don't, check whether SEC has rate-limited you (see Per-source caveats below).
src/connectors/<name>.ts. Export a single async function that returns a structured shape (no LLM-dependent fields, just data).sec.gov or data.sec.gov, wrap each axios call in throttleSec(() => axios.get(...)).src/index.ts: import, add to the tools/list schema, add the dispatch case in the request handler.audit_catalyst — add to the Promise.allSettled block and write the signal logic against the spec.verify-mcp.mjs.sec-throttle.ts. Going over triggers a 10-minute IP block. The SEC_USER_AGENT env var must be a real contact email — fake placeholders are rate-limited harder.drugsfda.json covers NDA/BLA submission history but not always forward PDUFA dates. Use CT.gov completionDate as the leading catalyst indicator.primaryDocument field points to the HTML wrapper, not the structured XML. The connector lists each filing's folder via index.json and finds the .xml entry. Capped at 25 most recent filings per audit to bound cost.SEC_USER_AGENT must stay in local environment variables and never be committed to version control. It contains a real contact email and gets logged on the SEC side; treating it as a secret keeps it out of public git history and avoids inadvertent doxxing..env and .env.local are gitignored by default in this repo; keep your contact details there.SEC_USER_AGENT — do not reuse another user's.GEMINI.md, CLAUDE.md, .gemini/, .claude/) are also gitignored; never commit those, they may contain operating notes / strategy details meant for local use only.x.x.+1): bug fixes, doc tweaks, no schema changes.x.+1.0): new tools, new connectors, additive signal logic, schema additions to existing tools.+1.0.0): breaking schema changes (renamed fields, removed tools), new required env vars, MCP protocol upgrades.version in package.json to match the change scope.npm run build && node verify-mcp.mjs — must be 9/9 passing.feat:, fix:, chore:).git tag v<X.Y.Z>.npm publish if you maintain a public npm release.Attila Kovacs (yesc97)
ISC