Skip to main content
Glama
drpwchen

openevidence-tools

by drpwchen

openevidence-tools

繁體中文版 → README.zh-TW.md

Two pieces that work together to use OpenEvidence as an evidence source you can actually trust:

  1. An MCP server that exposes OpenEvidence to any MCP client (Claude Code, etc.) as four tools — ask_openevidence, list_recent_oe_queries, fetch_oe_result, ask_oe_followup.

  2. The /oe-verify skill, which cross-checks every citation in an OE answer against primary sources and flags what OE left out.

Why both? OpenEvidence answers clinical questions fast, but it is a RAG pipeline (vector search + LLM synthesis), and its citations can be wrong even when the underlying claim is real. The classic failure is transitive citation: OE retrieves a chunk of a review's full text in which the review quotes another trial's number, then credits that number to the review itself. The claim is true; the attribution is false. Never absorb an OE answer unverified — that is the whole reason /oe-verify exists.


What the MCP server exposes

Tool

Purpose

ask_openevidence(question, preserve_citations=False)

Submit a new clinical question; returns evidence-based answer + citations. Auto-logs the article_id for recovery.

list_recent_oe_queries(limit=20)

List recently-submitted queries (ts, article_id, question) — recover an article_id after an interrupted run.

fetch_oe_result(article_id, preserve_citations=False)

Re-fetch a previously-submitted answer by ID. This is a GET and costs no question quota.

ask_oe_followup(parent_article_id, followup_question, preserve_citations=False)

Drill down in the same conversation thread; OE expands the prior Q&A as context.

preserve_citations=True — the provenance channel /oe-verify consumes

With preserve_citations=True, the answer keeps its inline [N] markers and appends a ## Citation Data JSON block. Each entry carries the metadata the verifier needs — title, doi, pmid, journal, authors, publication_types, impact_score, recency_days, is_guideline, url, plus two provenance fields:

  • origin — the RAG corpus the cited chunk was retrieved from. OE ships this ROT-1 obfuscated (every byte shifted +1, so _ arrives as a backtick); the server decodes it, e.g. mbodfu`gvmmufyu`tdsbqfe`w3lancet_fulltext_scraped_v2.

  • origin_risk — a transitive-citation risk tier derived from origin:

    Tier

    Corpora

    Meaning

    HIGH

    *_fulltext_scraped_* (lancet, nejm, aan, …)

    Scraped review full text — the quoted sentence is often the review citing someone else's trial. This is OE's main failure mode.

    MEDIUM

    wiley_cdsr_fulltext (Cochrane), wiley_research_fulltext, guidelines_fulltext_*, media_annotated_gemini

    Publisher full text / AI-annotated figures — real chunks, still not necessarily the paper's own finding.

    LOW

    pubmed_abstracts_*

    Abstract-level; little room to mis-attribute.

    UNKNOWN

    no span metadata

    Provenance unavailable — treated as MEDIUM, never as LOW.

/oe-verify uses origin_risk to aim its attribution check: a HIGH/MEDIUM chunk backing a quantitative claim is the danger zone, and each such citation gets traced back to whether the number is really that paper's own finding.

One paper can legitimately hold several [N] indices — OE indexes per retrieved chunk, not per paper (observed: 10 indices over 7 papers). The server maps markers to citation objects positionally (the i-th [N] occurrence == the i-th citation object in document order) and, on any count mismatch, degrades explicitly rather than guessing.


Related MCP server: KnowS MCP Server

The /oe-verify skill

A three-layer verification pass over one OE answer (skills/oe-verify/SKILL.md):

  • Step 0.5 — existence gate: every DOI is checked against CrossRef before any semantic work. A DOI that doesn't resolve is FABRICATED; no agent tokens are wasted on it.

  • Layer 1 — per-citation accuracy (parallel cheap agents): look each paper up in Semantic Scholar / PubMed, compare what OE claimed against what the source says, and — for HIGH/MEDIUM-provenance quantitative claims — run the attribution check that catches transitive citation.

  • Layer 2 — completeness (one stronger agent): anchor on the best recent systematic review / meta-analysis and ask what OE omitted, in both directions, plus an applicability check against your own practice context.

  • Layer 3 — internal contradiction scan: do the papers OE itself cited actually agree with each other? Only runs when ≥2 papers make quantitative claims on the same outcome.

The output is a compact Markdown report with a per-citation verdict table (✅ accurate, ⚠️ overstated, ❌ misrepresented, 🚫 fabricated, ↗️ transitive, 🔄 secondary-untraced, ❓ unverifiable) and an evidence-landscape summary.


Requirements

  • An OpenEvidence account (OpenEvidence is intended for clinicians). You log in yourself, in your normal browser.

  • A local browser-bridge daemon. The server does not scrape or spoof anything: it runs each OpenEvidence API call as a page-context fetch() inside your own already-logged-in openevidence.com browser tab, driven through a small local daemon that listens on 127.0.0.1. Every request therefore uses your own account and session — exactly what would happen if you clicked in the tab yourself. The reference implementation targets Kimi WebBridge, the browser bridge built into Moonshot's Kimi desktop app (default endpoint http://127.0.0.1:10086/command) — note there are unrelated third-party projects using the name kimi-webbridge, some of which expose an unauthenticated port 10086; this repo means the official one. Point OE_BRIDGE_URL at any daemon that speaks the same simple {action, args, session} JSON contract. OpenEvidence has no public API and its session cookie is httpOnly, which is why an in-tab fetch (rather than a plain HTTP client) is used at all.

  • Python 3.10+ and the deps in requirements.txt (mcp, pinned <2 — see below).

  • Windows, macOS or Linux. One caveat off Windows: the daemon has no documented standalone binary there (the Kimi desktop app is the daemon), so start the bridge yourself before using the server — auto-start only works on Windows, or wherever you point OE_BRIDGE_BIN at a binary that accepts a start argument. Browser auto-launch works on all three.

mcp must stay below 2.0. mcp 2.0 removed mcp.server.fastmcp, so an unpinned install resolves to 2.x and server.py dies at import with ModuleNotFoundError — which an MCP client only ever surfaces as Failed to connect — Connection closed, sending you hunting in the wrong place. requirements.txt pins it; if you install by hand, pin it too.

🔒 Lock your critical sites out of the bridge. WebBridge drives your real, logged-in browser, and the class of bridge that uses the chrome.debugger API holds your logged-in identity on every site at once — which is what makes it useful here. If you also let an AI agent drive that same browser, consider fencing your bank, brokerage, and mailbox out of its reach so a prompt-injected agent can't wander into them. I made a small tool for exactly this: kimi-webbridge-lockdown (the per-site "site access" toggle in the extensions UI does not stop debugger-based bridges — you need the browser policy layer; the tool sets it up, guided and reversible).

Configuration (environment variables)

Variable

Default

Purpose

OE_BRIDGE_URL

http://127.0.0.1:10086/command

Browser-bridge daemon endpoint.

OE_BRIDGE_BIN

~/.kimi-webbridge/bin/kimi-webbridge.exe on Windows; unset elsewhere

Daemon binary to auto-start if it isn't running. Unset ⇒ no auto-start; run the bridge yourself.

OE_BROWSER_EXE

auto-detected per platform (Edge/Chrome/Chromium)

Browser to auto-launch when the bridge extension isn't connected (i.e. the browser is closed).

OE_DATA_DIR

~/.openevidence

Where the query log and rate log are written.

Install

pip install -r requirements.txt

# Register with an MCP client, e.g. Claude Code:
claude mcp add openevidence -- python /path/to/openevidence-tools/mcp/server.py

# Put skills/oe-verify/ where your client discovers skills.

Log into openevidence.com in your normal browser once. From then on the server is self-healing: it auto-starts the bridge daemon, auto-launches the browser if it is closed (the bridge extension must be installed in it), and opens/reuses an OpenEvidence tab as needed.


Responsible use

  • Your own account, your own session. This tool automates your logged-in browser tab. Use it only with an account you are entitled to use, and follow OpenEvidence's terms of service.

  • Respect the quota. OpenEvidence's account quota is roughly 100 questions/hour, and only new questions and follow-ups spend it (re-fetching a prior answer is free). The server enforces a built-in courtesy rate limiter (sliding window + concurrency cap) that stays conservative on purpose — don't raise it to hammer the service.

  • Verify before clinical use. Run /oe-verify (or otherwise check the primary sources) before you rely on an OE answer. That is the entire point of this repo.

  • Not medical advice. These tools help a clinician evaluate evidence; they do not replace clinical judgment, and their output is not medical advice.


Credit where it's due — htlin222

This project started independently: I wanted OpenEvidence answers to flow into my note-writing workflow, and the first version drove the site with my own browser automation. That version died to bot detection, and it was while looking for a way forward that I found Hsieh-Ting Lin (htlin222)'s work. Much of what this repo does well now comes from his more recent updates, and it is worth being specific about what came from where.

From audit-oe-skill (MIT) came the core insight this whole repo is built around: that OpenEvidence's origin field is ROT-1 obfuscated, that it names the RAG corpus a chunk was retrieved from, and that the corpus therefore predicts how likely the citation is to be mis-attributed. He also named the failure mode — transitive citation, where a review quotes another trial's number and OE credits the review — and built the verification architecture we adopted: one cheap agent per citation in parallel, a trace-back stage for quantitative claims in review full text, and a single stronger agent scanning the cited papers for contradictions with each other, graded CRITICAL / WARNING / NOTE. Our origin_risk tiers are his risk table; our Layer 1 and Layer 3 are his Phase 3 and Phase 4. When you read our verification report, most of the questions it asks are his questions.

From openevidence-mcp (Apache-2.0) came the transport idea that got us unstuck: OpenEvidence has no public API and an httpOnly session cookie, so don't scrape it — run the call inside the clinician's own already-logged-in browser tab. Our implementation is our own (and drives a different daemon), but the direction was his.

We wrote our own tool layer rather than forking, for a practical reason: our verifier needs publication_types, impact_score, recency_score, is_guideline and per-chunk origin returned through the MCP contract itself, and we drive a general-purpose browser daemon rather than a dedicated extension. We also added a completeness layer his skill doesn't have (what did OE omit?), a CrossRef existence gate, and a marker↔citation index mapping our architecture needs and his does not. Those are additions to his foundation, not a replacement for it.

skills/oe-verify/ is derived from audit-oe-skill, MIT © 2026 Hsieh-Ting Lin; see NOTICE. Thank you, Hsieh-Ting.

Works with textbook-to-note

/oe-verify is designed to plug into the textbook-to-note note-writing workflow as its optional evidence-enrichment stage: when a note's management/treatment section needs current guidance, ask_openevidence fetches it and /oe-verify gates it before it enters the note. Standalone use — just asking OE questions and verifying the answers — is equally fine.


🌱 Start here if you're new to AI agents / AI agent 新手起點

This tool is one piece of my personal AI workflow. If you want to learn how to use AI agents like Claude Code from zero (no programming background needed), I wrote a beginner series (in Traditional Chinese):

這個工具是我個人 AI 工作流的一部分。想從零開始學怎麼用 Claude Code 這類 AI agent(不需要程式背景),可以從我的入門系列開始:

  1. 從零開始:安裝、看懂 GitHub、跑起你的第一個工具

  2. 怎麼跟 AI agent 講話:心法、元技能與規則檔

  3. 自動化流程不是設計出來的,是長出來的

Full map of my tools and posts / 所有工具與文章的全貌 → drpwchen.com/map

A
license - permissive license
-
quality - not tested
A
maintenance

Maintenance

Maintainers
Response time
4dRelease cycle
2Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.

  • Condition-aware ingredient and product checks for agents, with evidence tiers and citations.

  • Federated search of books and papers, BibTeX/RIS citations, open-access retrieval and reading.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/drpwchen/openevidence-tools'

If you have feedback or need assistance with the MCP directory API, please join our Discord server