Openevidence MCP Server

Unofficial MCP server connecting OpenEvidence to AI agents via authenticated browser sessions

Local serverstdio

What is the Openevidence MCP server?

Openevidence MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Unofficial MCP server connecting OpenEvidence to AI agents via authenticated browser sessions.

What you get

OpenEvidence MCP is an unofficial Model Context Protocol server that connects OpenEvidence to Codex, Claude Code, Claude Desktop, Cursor, Cline, Continue, and other MCP-compatible clients through your own authenticated browser session.

  • checking whether the saved session is authenticated;
  • listing your OpenEvidence question/article history;
  • fetching a full article payload by ID;
  • asking an OpenEvidence research question and optionally waiting for completion;
  • polling an existing OpenEvidence article until it completes

Setting it up

Installation goes through your MCP client rather than a global install: point it at playwright on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once Openevidence is connected, these are the calls the assistant has available:

  • Windows — %USERPROFILE%.openevidence-mcp\browser-profile
  • authenticated — true
  • Client — Status
  • Cursor — Compatible
  • Cline — Compatible
  • Continue — Compatible
  • oe_auth_status — Checks whether the saved OpenEvidence browser session is authenticated
  • oe_history_list — Lists prior OpenEvidence articles with optional pagination and search. Returns a privacy-reduced list unless include_raw=true is explicitly requested
  • oe_article_get — Fetches an article by ID and returns normalized fields (status, is_complete, question, answer_text). Raw payload is opt-in with include_raw=true
  • oe_article_wait — Waits for an existing article ID to complete; useful after non-blocking oe_ask
  • oe_ask — Creates an OpenEvidence research question and optionally waits for the article to complete
  • macOS — The macOS tool exposed by this server

Configuration and credentials

  • Node.js 20+ - npm 10+ - OpenEvidence account - macOS, Windows, or Linux - Chromium installed by Playwright (npx playwright install chromium)

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Openevidence.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the openevidence mcp server does with a few real requests.

Choosing this one

This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Openevidence's toolset — Windows, authenticated, Client and 10 more — is a fair guide to whether it matches your workflow. It is maintained by bakhtiersizhaev; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Openevidence's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
Windows%USERPROFILE%\.openevidence-mcp\browser-profile
authenticatedtrue
ClientStatus
CursorCompatible
ClineCompatible
ContinueCompatible
oe_auth_statusChecks whether the saved OpenEvidence browser session is authenticated.
oe_history_listLists prior OpenEvidence articles with optional pagination and search. Returns a privacy-reduced list unless include_raw=true is explicitly requested.
oe_article_getFetches an article by ID and returns normalized fields (status, is_complete, question, answer_text). Raw payload is opt-in with include_raw=true.
oe_article_waitWaits for an existing article ID to complete; useful after non-blocking oe_ask.
oe_askCreates an OpenEvidence research question and optionally waits for the article to complete.
macOSThe macOS tool exposed by this server.
CodexThe Codex tool exposed by this server.

How to install the Openevidence MCP server

{
  "mcpServers": {
    "openevidence": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/openevidence-mcp/dist/server.js"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 20+ - npm 10+ - OpenEvidence account - macOS, Windows, or Linux - Chromium installed by Playwright (npx playwright install chromium)

Example prompts to try

  • Use Openevidence to Windows.
  • Use Openevidence to authenticated.
  • Use Openevidence to Client.

Frequently asked questions

It connects Openevidence to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (Windows, authenticated, Client, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Openevidence directly.