npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/walids35-mcp-paper-finder

v1.0.0

Published

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.

Readme

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.

Supported Sources 🌐

Quick Start 🚀

You can run MCP Paper Finder in two ways:

1. Run with Docker (Recommended) 🐳

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.