Medrxiv
FreeNot checkedMCP server that turns a medRxiv DOI into clean markdown full text and provides free, relevance-ranked preprint search via Europe PMC.
About
MCP server that turns a medRxiv DOI into clean markdown full text and provides free, relevance-ranked preprint search via Europe PMC.
README
MCP server that turns a medRxiv DOI into clean markdown full text — plus free, relevance-ranked preprint search.
- 📄 Full-text retrieval — give it a DOI, get the whole paper as clean markdown (sections, tables, figure captions)
- 🔍 Free search — relevance-ranked medRxiv search via Europe PMC, returns DOI + title + abstract + date
- 🩺 Source of truth — full text comes from the official medRxiv
.mecaText-and-Data-Mining archive, not scraped HTML - ⚡ Lazy local index — a DOI→file index is built on demand and cached in sqlite, so repeat fetches in a month are instant
- 🔓 Your data, your key — full text reads a Requester-Pays S3 bucket with your own AWS key; nothing is shipped or shared
bioRxiv has its own package: biorxiv-mcp.
What is this?
This is a Model Context Protocol (MCP) server that gives AI assistants the full text of medRxiv preprints. Search is free (via the Europe PMC REST API). Full text is resolved from the official s3://medrxiv-src-monthly archive: the server maps a DOI to its month, scans that month's .meca archives once to build a local DOI→file index, downloads the one matching archive, extracts its JATS XML, and converts it to GitHub-flavored markdown with pandoc.
Designed for AI assistants like Claude to read primary literature directly. Works with any MCP-compatible client (Claude Desktop, Claude Code, or custom integrations).
Installation
uvx --from git+https://github.com/yogsoth-ai/medrxiv-mcp medrxiv-mcp
No manual install needed — uvx fetches and runs it. The bundled pandoc binary ships with the package, so you do not need a system pandoc.
Quick Start
1. Add to your MCP client
Claude Code — .mcp.json in your project root
Claude Desktop — claude_desktop_config.json (~/Library/Application Support/Claude/ on macOS, %APPDATA%\Claude\ on Windows)
{
"mcpServers": {
"medrxiv": {
"command": "uvx",
"args": ["--from", "git+https://github.com/yogsoth-ai/medrxiv-mcp", "medrxiv-mcp"],
"env": {
"AWS_ACCESS_KEY_ID": "<your key id>",
"AWS_SECRET_ACCESS_KEY": "<your secret>",
"AWS_DEFAULT_REGION": "us-east-1"
}
}
}
}
2. Supply your AWS key
search_preprints is free and needs no key. fetch_fulltext reads a Requester-Pays bucket and does — see below.
3. Restart your MCP client
The server starts automatically when the client needs it.
Requires your own AWS key (Requester-Pays)
medRxiv full text is only reliably reachable through the official s3://medrxiv-src-monthly Text-and-Data-Mining bucket, which is Requester-Pays: you supply an AWS key, and your account pays the (tiny) transfer cost. The package never ships a key — each user brings their own.
Costs are small:
| Action | Cost |
|---|---|
search_preprints |
free (Europe PMC, no AWS) |
First fetch_fulltext in a given month |
~$0.03 one-time (indexes that month) |
Each fetch_fulltext after that |
well under $0.01 |
Setup: in the AWS IAM console, create a user, attach the AmazonS3ReadOnlyAccess policy, create an access key, and put it in the env block above. Deactivate the key whenever you're done.
Optional env:
| Variable | Default | Purpose |
|---|---|---|
RXIV_CACHE_DIR |
~/.cache/rxiv-mcp/ |
where the local DOI→file sqlite cache lives |
RXIV_SCAN_CONCURRENCY |
16 |
threads used when indexing a month |
Available Tools
| Tool | Description |
|---|---|
search_preprints |
Search medRxiv by keyword (relevance-ranked, free via Europe PMC). Returns [{doi, title, abstract, date}]. |
fetch_fulltext |
Given a DOI, return the preprint's full text as markdown (reads the Requester-Pays S3 archive). |
The intended workflow: search_preprints to find a paper and get its DOI cheaply, then fetch_fulltext on that DOI when you want to read it.
Example Queries
Ask Claude things like:
- "Search medRxiv for recent preprints on long-COVID cardiovascular outcomes and summarize the top 3 abstracts"
- "Fetch the full text of a medRxiv DOI and walk me through its statistical methods"
- "Find preprints on a vaccine-efficacy trial, then read the most relevant one in full"
For Developers
git clone https://github.com/yogsoth-ai/medrxiv-mcp.git
cd medrxiv-mcp
pip install -e .
python -m pytest -v # offline suite — no AWS, no network
python -m medrxiv_mcp.server # run the server locally (needs AWS env for fetch)
The offline test suite covers the non-trivial logic (JATS→markdown conversion and the .meca DOI parser) against fixtures it builds itself — no AWS spend, no network. Live search and S3 fetch are smoke-tested manually.
Links
- 🐙 GitHub repository
- 🧬 biorxiv-mcp — the bioRxiv twin
- 🌐 Europe PMC REST API
- 📦 medRxiv TDM / Open Access
- 🔧 Model Context Protocol
📄 License
Install Medrxiv in Claude Desktop, Claude Code & Cursor
unyly install medrxiv-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add medrxiv-mcp -- uvx --from git+https://github.com/yogsoth-ai/medrxiv-mcp medrxiv-mcpFAQ
Is Medrxiv MCP free?
Yes, Medrxiv MCP is free — one-click install via Unyly at no cost.
Does Medrxiv need an API key?
No, Medrxiv runs without API keys or environment variables.
Is Medrxiv hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Medrxiv in Claude Desktop, Claude Code or Cursor?
Open Medrxiv on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Medrxiv with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
