Research Papers MCP Server

Research Papers MCP Server

Enables LLMs to search and retrieve academic papers from arXiv by topic, author, category, or ID.

Category
Visit Server

README

Research Papers MCP Server

smithery badge

This project is a Model Context Protocol (MCP) server written in Python that acts as an intelligent interface to academic paper repositories, particularly the arXiv API. It allows Large Language Models (LLMs) like Claude to search for and retrieve academic papers.

Features

This server exposes a suite of tools to the LLM, enabling it to:

  • search_papers: Perform a general topic search for papers from sources like arXiv.
  • find_papers_by_author: Find recent papers by a specific author from sources like arXiv.
  • get_latest_from_category: Browse the newest submissions in a given arXiv category (e.g., cs.LG).
  • get_paper_by_id: Get full details for a single paper by its arXiv ID.
  • get_papers_by_ids: Efficiently get details for a list of papers by their arXiv IDs.

Requirements

Setup and Installation

Installing via Smithery

To install this research papers MCP server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @candenizkocak/research-papers-mcp-server --client claude

Manual Installation

  1. Clone the repository:

    git clone https://github.com/candenizkocak/research-papers-mcp-server.git research-papers-mcp-server
    cd research-papers-mcp-server
    
  2. Create a virtual environment and install dependencies:

    uv venv
    source .venv/bin/activate  # On Windows, use .venv\Scripts\activate
    uv sync
    

    (Note: uv sync will install dependencies from the pyproject.toml file).

Usage with Claude for Desktop

  1. Find the absolute path to your research-papers-mcp-server directory.

  2. Open your Claude for Desktop configuration file (claude_desktop_config.json):

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  3. Add the server configuration, replacing the placeholder with your absolute path:

    {
      "mcpServers": {
        "research-papers": {
          "command": "uv",
          "args": [
            "--directory",
            "/ABSOLUTE/PATH/TO/research-papers-mcp-server",
            "run",
            "arxiv_server.py"
          ]
        }
      }
    }
    
  4. Completely restart Claude for Desktop.

Example Prompts

  • General Search: "Find papers about 'mixture of experts models'."
  • Author Search: "What are the most recent papers by Geoffrey Hinton?"
  • Category Search: "What's new in the cs.LG category on arXiv?"
  • Single ID Lookup: "Tell me about arXiv paper 1706.03762."
  • Multiple ID Lookup: "Give me details for papers 2307.09288 and 2203.02155."

Acknowledgements

Thank you to arXiv for use of its open access interoperability.

Compliance Notes

Developers and users of this project are responsible for familiarizing themselves with the official arXiv API Terms of Use, API Basics, and API User Manual to ensure full compliance with arXiv's policies, including any rate limits or usage restrictions.

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