OpenPapers MCP

OpenPapers MCP

A local MCP server for searching scientific papers, retrieving metadata and abstracts, and legally downloading Open Access PDFs via OpenAlex, CrossRef, and Unpaywall APIs.

Category
Visit Server

README

OpenPapers MCP

License: MIT Python 3.12+ CI Tests

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
OpenAlex Search, metadata, abstracts (inverted index), concepts, citations mailto (polite pool)
CrossRef DOI lookup, reference list, funders, publisher mailto + User-Agent
Unpaywall Legal Open Access PDFs from repositories & publishers email

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 server

Requirements: Python ≥ 3.12 and uv.


Tools

Tool Description
search_papers(query, num_results=10, year_from?, year_to?) OpenAlex relevance search. Returns DOI, title, authors, year, venue, citations, OA status, concepts.
get_paper(doi) Full metadata + abstract (reconstructed) + references (CrossRef-enriched) + authors with ORCID/affiliations + funders + publisher.
find_oa_pdf(doi) Unpaywall lookup. Returns is_oa, best OA location with direct PDF URL, all OA locations (version, license, host type).
download_pdf(url, doi?, filename?) Streams the PDF to $PDF_DIR. SSRF-safe (private/loopback/metadata IPs refused), magic-byte-verified (%PDF-), capped at PDF_MAX_BYTES, written atomically (no partial files).
research_topic(query, max_results=5) 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 file

Configuration

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=INFO

If 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-Agent headers 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). Set POLITE_POOL=0 to 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_DIR and 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 live

See 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 tests

Design notes

  • Polite by default. mailto/User-Agent headers are set on every request, with a POLITE_POOL=0 escape 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/pdf and bytes must start with %PDF-. URLs are validated for scheme and resolved host (loopback, RFC1918, link-local 169.254/16, CGNAT, ULA all refused). Filenames are sanitized and paths must stay inside PDF_DIR. Downloads write to <name>.pdf.part and 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_paper still returns the OpenAlex record with empty references.
  • Single source of truth for version. __version__ lives in config.py; pyproject.toml mirrors 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:

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.mddo 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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured