OpenPapers MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OpenPapers MCPSearch for the latest papers on climate change and AI"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OpenPapers MCP
A local Model Context Protocol server for scientific paper research — search, metadata, abstracts, and legal Open Access PDF downloads. Runs entirely on your machine over stdio. Works with Claude Desktop, ZCode, Cursor, and any other MCP client.
Why use this instead of hitting the APIs directly? It abstracts three open scholarly APIs into five LLM-callable tools, reconstructs abstracts from OpenAlex's inverted index, finds legal OA copies via Unpaywall, and safely downloads PDFs (SSRF-safe, magic-byte-verified, atomic). No Sci-Hub, no paywall bypass, no institutional license required.
Backed by three free, open APIs
API | Role | Auth |
Search, metadata, abstracts (inverted index), concepts, citations |
| |
DOI lookup, reference list, funders, publisher |
| |
Legal Open Access PDFs from repositories & publishers |
|
What this is not: No Sci-Hub, no paywall bypass, no EBSCO (which needs an institutional license). Only legitimately OA sources via Unpaywall.
Quick start
git clone https://github.com/Kaago/openpapers-mcp.git
cd OpenPapers
cp .env.example .env # then edit CONTACT_EMAIL
uv sync # install deps
uv run pytest # 69 offline tests (+ 3 live tests gated on OPENPAPERS_LIVE=1)
uv run openpapers # start the stdio MCP serverRequirements: Python ≥ 3.12 and uv.
Tools
Tool | Description |
| OpenAlex relevance search. Returns DOI, title, authors, year, venue, citations, OA status, concepts. |
| Full metadata + abstract (reconstructed) + references (CrossRef-enriched) + authors with ORCID/affiliations + funders + publisher. |
| Unpaywall lookup. Returns |
| Streams the PDF to |
| Convenience: searches + enriches top results with OA status concurrently. Compact overview for scoping an area. |
Typical workflow
search_papers("transformer attention") → list of candidates
└─ get_paper("10.48550/arXiv.1706.03762") → full record + abstract
└─ find_oa_pdf("10.48550/arXiv.1706.03762") → OA URL
└─ download_pdf("<url>", "10.48550/arXiv.1706.03762") → local fileConfiguration
All configuration lives in .env (git-ignored). See .env.example:
# Your email — sent only as mailto=/User-Agent to the three APIs.
# Set POLITE_POOL=0 to withhold it entirely (privacy mode).
CONTACT_EMAIL=your-email@example.com
POLITE_POOL=1
# Where downloaded PDFs land.
PDF_DIR=./pdfs
# HTTP tuning
HTTP_TIMEOUT=30
HTTP_MAX_RETRIES=3
PDF_MAX_BYTES=104857600 # 100 MB
# Logging
LOG_LEVEL=INFOIf CONTACT_EMAIL is unset, a neutral placeholder is used — the server still
works, just with potentially stricter rate limits.
Privacy
Your email is sent only in
mailto=query params /User-Agentheaders to OpenAlex, CrossRef, and Unpaywall — never to any other party. It is not logged at INFO level (only a masked form, e.g.you***@x.com). SetPOLITE_POOL=0to withhold it entirely.Search queries and DOIs are sent to those three APIs as part of normal operation. Stderr logs may include them at WARNING level on errors. The stderr stream is captured by your MCP client into a local log file.
Downloaded PDFs persist on disk under
PDF_DIRand reveal your research interests. The directory is git-ignored.
Connect your MCP client
The server is a standard stdio MCP server. Add it to your client's config,
replacing /path/to/OpenPapers with your checkout path.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"openpapers": {
"command": "uv",
"args": ["run", "--directory", "/path/to/OpenPapers", "openpapers"]
}
}
}ZCode
~/.zcode/config.toml (or workspace .zcode/config.toml):
[[mcp_servers]]
name = "openpapers"
transport = "stdio"
[mcp_servers.stdio]
command = "uv"
args = ["run", "--directory", "/path/to/OpenPapers", "openpapers"]Cursor
.cursor/mcp.json:
{
"mcpServers": {
"openpapers": {
"command": "uv",
"args": ["run", "--directory", "/path/to/OpenPapers", "openpapers"]
}
}
}After editing, restart the client. The five openpapers tools should appear.
Development
# Tests (offline — uses respx mocks, no network needed)
uv run pytest
# Lint & format
uv run ruff check .
uv run ruff format --check .
# Type check
uv run mypy
# Optional: live smoke test against the real APIs
OPENPAPERS_LIVE=1 uv run pytest -m liveSee CONTRIBUTING.md for the full developer guide, including the offline-tests-only convention.
Project layout
src/openpapers/
├── __main__.py # entry point: `uv run openpapers`
├── server.py # FastMCP + 5 tool registrations
├── config.py # .env loading, paths, constants, version source-of-truth
├── http_client.py # httpx client w/ retry, polite headers, safe download
├── security.py # SSRF & path-traversal guards
├── models.py # Pydantic models (public tool contract)
└── services/
├── openalex.py # search, get_by_doi, abstract reconstruction
├── crossref.py # DOI metadata, references, funders, publisher
├── unpaywall.py # OA lookup
├── downloader.py # PDF download with atomic writes & magic-byte check
└── util.py # DOI normalization, abstract rebuild, name parsing
tests/ # 69 offline tests via respx + 3 live smoke testsDesign notes
Polite by default.
mailto/User-Agentheaders are set on every request, with aPOLITE_POOL=0escape hatch for privacy mode.Abstract reconstruction. OpenAlex stores abstracts as
{word: [positions]}to avoid redistributing full text; the original is rebuilt losslessly.PDF safety. Content-type must be
application/pdfand bytes must start with%PDF-. URLs are validated for scheme and resolved host (loopback, RFC1918, link-local169.254/16, CGNAT, ULA all refused). Filenames are sanitized and paths must stay insidePDF_DIR. Downloads write to<name>.pdf.partand rename atomically on success.DOI normalization. Accepts bare DOIs,
doi:...,https://doi.org/..., or DOIs embedded in surrounding text. The regex excludes URL-significant chars (?#&[]) to prevent API-URL injection.CrossRef enrichment is best-effort. If CrossRef is down or has no record,
get_paperstill returns the OpenAlex record with empty references.Single source of truth for version.
__version__lives inconfig.py;pyproject.tomlmirrors it.
Limitations & alternatives
No paywalled full text. If a paper isn't OA, you'll get metadata + abstract but no PDF. For paywalled content, use your institution's VPN / library proxy, or an EBSCO Discovery Service integration (requires license).
Abstract coverage. OpenAlex has abstracts for most recent papers, but older works (pre-~2000, some publishers) may have
abstract: null.Rate limits. The three APIs are generous but not unlimited. On 429/5xx the server retries with exponential backoff, honoring
Retry-After(both seconds and HTTP-date forms). For bulk work, throttle your calls or self-host OpenAlex snapshots.
Data licensing & attribution
This server is a thin client over three upstream APIs. Each has its own terms:
OpenAlex — metadata is CC0; they request attribution. See openalex.org.
CrossRef — metadata is CC0; the REST API has terms of use.
Unpaywall — see their terms.
PDFs you download come from the publishers/repositories that Unpaywall identifies; each has its own license (CC-BY, paywalled-but-OA-copy, etc.). Respect the individual paper's license.
Getting help
🐛 Bugs & feature requests: open an issue
🔒 Security issues: see SECURITY.md — do not open a public issue
💬 Discussion: GitHub Discussions (if enabled) or the issue tracker
License
MIT © Philipp Polte. See CONTRIBUTING.md for the contribution agreement and CODE_OF_CONDUCT.md for community standards.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Kaago/openpapers-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server