Skip to main content
Glama
Walids35

MCP Paper Finder

by Walids35

MCP Paper Finder ๐Ÿ“š๐Ÿ”

A modular, extensible Model Context Protocol (MCP) server for searching, downloading, and reading academic papers from multiple sources, including arXiv, Zenodo, bioRxiv, medRxiv, CrossRef, Google Scholar, ResearchGate, Sci-Hub, and Elsevier.

MCP Paper Finder

Features โœจ

  • Unified Search ๐Ÿ”Ž: Query multiple academic sources with a single interface.

  • Download PDFs ๐Ÿ“ฅ: Download papers (when available) from supported sources.

  • Read Papers ๐Ÿ“–: Extract and return text from downloaded PDFs (where supported).

  • MCP Compatible ๐Ÿค: Works as a local MCP tool for Claude, Open Interpreter, and other MCP clients.

  • Extensible ๐Ÿ› ๏ธ: Easily add new sources or tools.

Related MCP server: Paper Download MCP Server

Supported Sources ๐ŸŒ

Quick Start ๐Ÿš€

You can run MCP Paper Finder in two ways:

Copy this JSON as your MCP tool in your MCP client (Make sure to locate the config file). Feel free to add env variable in the env section. Env variables are presented in .env.example.

"mcpServers": {
  "paper-finder": {
    "command": "docker",
    "args": [
        "run",
        "--rm",
        "-i",
        "-e",
        "DOTENV_CONFIG_QUIET=true",
        "walids35/mcp-paper-finder"
    ],
    "env": {
        "ELSEVIER_API_KEY": "your API KEY", // OPTIONAL (in case you want to use elsevier provider)
        "RESEARCHGATE_COOKIE": "", // OPTIONAL (in case of 429 Too many requests error)
        "SCIHUB_COOKIE": "" // OPTIONAL (recommended to bypass DDOS Guard)
      }
  }
}

2. Run Locally ๐Ÿ’ป

git clone https://github.com/Walids35/mcp-paper-finder.git
cd mcp-paper-finder
npm install
npm run build
  • Create .env file and add the environment variables presented in .env.example

Then, add the path to your built entry point (e.g., node ./build/index.js) as a local tool in your MCP client (such as Claude or Open Interpreter).

"paper-finder": {
    "command": "node",
    "args": [
    "ABSOLUTE/PATH/TO/MCPDIRECOTRY/build/index.js"
     ]
}

Testing ๐Ÿงช

Run all tests with:

npm test

Project Structure ๐Ÿ—‚๏ธ

src/
  index.ts                # MCP server entry point
  providers/              # Source-specific search/download/read logic
  tests/                  # Jest test cases for each provider
  types/                  # Shared type definitions

Adding New Sources โž•

  1. Implement a new provider class in src/providers/.

  2. Register it as a tool in src/index.ts.

  3. Add tests in src/tests/.

Demo

MCP Paper Finder DEMO

License ๐Ÿ“œ

ISC


Note: This project is for research and educational purposes. Respect the terms of service and copyright policies of each data provider.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    An MCP server for searching and downloading academic papers from multiple sources including arXiv, PubMed, bioRxiv, and Sci-Hub, designed for seamless integration with large language models like Claude Desktop.
    57
    2,161 PyPI
    2,611
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    An MCP server for downloading academic papers from multiple sources using intelligent routing and year-aware priority selection. It enables users to retrieve metadata and download single or batch PDFs by DOI or URL.
    3
    2
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server for academic research that enables paper search across 14 sources, PDF download with multi-provider fallback, metadata extraction, and bibliography generation.
    2
    GPL 3.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    A MCP server for academic literature retrieval, aggregating multiple data sources like arXiv, Crossref, OpenAlex, PubMed, and Semantic Scholar to provide search, details, citations, trends, and recommendations.
    4
    MIT