Scientific Papers MCP Server

MCP Server for Scientific Paper Harvesting from arXiv and OpenAlex

Local serverstdioTypeScript

What is the Scientific Papers MCP MCP server?

Scientific papers mcp mcp server connects Scientific Papers MCP to AI assistants that speak the Model Context Protocol. MCP Server for Scientific Paper Harvesting from arXiv and OpenAlex.

What Scientific Papers MCP does

A comprehensive Model Context Protocol (MCP) server that provides LLMs with real-time access to scientific papers from 6 major academic sources: arXiv, OpenAlex, PMC (PubMed Central), Europe PMC, bioRxiv/medRxiv, and CORE.

Tools it exposes

Once connected, the assistant can call these 6 tools directly:

  • list_categories — The list_categories tool exposed by this server
  • fetch_latest — Fetches the latest papers from any source for a given category with metadata only (no text extraction)
  • fetch_top_cited — Fetches the top cited papers from OpenAlex for a given concept since a specific date
  • search_papers — Searches for papers across multiple academic sources with field-specific search and sorting options
  • fetch_content — Fetches full metadata and text content for a specific paper by ID with complete text extraction
  • Build — The Build tool exposed by this server

Installing the scientific papers mcp mcp server

The server is distributed via npm as npm, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: CORE_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Scientific Papers MCP sits in that group, and the shape of its toolset — list_categories, fetch_latest, fetch_top_cited among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by benedict2310, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the scientific papers mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
list_categoriesThe list_categories tool exposed by this server.
fetch_latestFetches the latest papers from any source for a given category with **metadata only** (no text extraction).
fetch_top_citedFetches the top cited papers from OpenAlex for a given concept since a specific date.
search_papersSearches for papers across multiple academic sources with field-specific search and sorting options.
fetch_contentFetches full metadata and text content for a specific paper by ID with **complete text extraction**.
BuildThe Build tool exposed by this server.

How to install the Scientific Papers MCP MCP server

{
  "mcpServers": {
    "scientific-papers": {
      "command": "latest-science-mcp"
    }
  }
}

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

Configuration

VariableDescriptionRequired
CORE_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Scientific Papers MCP to list categories.
  • Use Scientific Papers MCP to fetch latest.
  • Use Scientific Papers MCP to fetch top cited.

Frequently asked questions

It connects Scientific Papers MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (list_categories, fetch_latest, fetch_top_cited, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Scientific Papers MCP directly.