🧠 arXiv Research Assistant MCP Server

by daheepk

17 stars
282 downloads
Not rated
GitHub

About

This project is an arXiv paper retrieval and search service implemented through a custom MCP (Multi-Capability Provider) framework. It provides a server-side implementation to fetch, search, and analyze academic papers from arXiv.org.

Details

Author
daheepk
GitHub stars
17
Downloads
282
Categories
Search

- Keyword-based paper search with sort by relevance or date
- Fetch latest papers by arXiv category code
- Paper details lookup: title, authors, abstract, DOI, PDF link
- Author-based paper search
- Experimental trend analysis for a category
- Prompt generators for summarization and paper comparison

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name 🧠 arXiv Research Assistant MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via Smithery (npx -y @smithery/cli install arxiv-paper-mcp --client claude) or from PyPI (uv pip install arxiv-paper-mcp). Run the server locally with arxiv-paper-mcp. For Claude integration, add the provided JSON configuration to Claude's MCP settings.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "\ud83e\udde0 arxiv research assistant mcp server": {
            "arxiv-mcp-server-daheepk": {
                "command": "uv",
                "args": [
                    "pip",
                    "install",
                    "-e",
                    "."
                ]
            }
        }
    }
}

McpServers

{
    "arxiv-mcp-server-daheepk": {
        "command": "uv",
        "args": [
            "pip",
            "install",
            "-e",
            "."
        ]
    }
}

🧠 arXiv Research Assistant MCP Server

smithery badge

This project is an MCP (Model Context Protocol) server built to interact with the vast arXiv.org paper database.

It allows clients like Claude AI to search, explore, and compare arXiv papers efficiently β€” all through a custom-built, local server. It’s built with Python and the FastMCP framework, and uses uv for lightweight package management.

<table>
<tr>
<td>
<a href="https://glama.ai/mcp/servers/@daheepk/arxiv-mcp-server">
arXiv Research Assistant Server MCP server
</a>
</td>
<td style="vertical-align: top; padding-left: 10px;">
<a href="https://mseep.ai/app/daheepk-arxiv-paper-mcp">
MseeP.ai Security Assessment Badge
</a>
</td>
</tr>
</table>

✨ Features

- πŸ” Keyword-based Paper Search
Search arXiv papers by keywords, with options to sort by relevance or most recent.

- πŸ“š Latest Papers by Category
Specify an arXiv category code (e.g., cs.AI, math.AP) to fetch the most recent papers in that field.

- πŸ“„ Paper Details Lookup
Fetch detailed metadata using a paper's arXiv ID: title, authors, abstract, categories, DOI, PDF link, and more.

- πŸ§‘β€πŸ”¬ Author-based Paper Search
Retrieve a list of papers published by a specific author.

- πŸ“Š Trend Analysis (Experimental)
Get an overview of trending keywords or topics based on recent papers in a category (currently uses mock data).

- πŸ“ Summarization Prompt Generator
Dynamically generate prompts that help LLMs summarize a selected paper more effectively.

- πŸ†š Comparison Prompt Generator
Provide two paper IDs to generate a structured prompt for comparing their content.

---

πŸ› οΈ Tech Stack

- Python 3.11+
- FastMCP
- uv (for dependency & environment management)
- requests (for API communication)
- xml.etree.ElementTree (for parsing XML responses)

---

πŸš€ Getting Started

Installing via Smithery

To install arXiv Research Assistant MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install arxiv-paper-mcp --client claude

Installation from PyPI

uv pip install arxiv-paper-mcp

πŸ”§ Clone the repository (for development)

git clone https://github.com/daheepk/arxiv-mcp-server.git
cd arxiv-mcp-server

πŸ”§ Install Dependencies (for development)

Use uv to install all dependencies in editable mode:

uv pip install -e .

βš™οΈ How to Run

▢️ Run the server (locally)

arxiv-paper-mcp

πŸ”Œ Use with Claude

To use this MCP server with Claude, add the following JSON configuration to Claude's MCP settings:

{
  "mcpServers": {
    "arXivPaper": {
      "command": "uv",
      "args": [
        "tool",
        "run",
        "arxiv-paper-mcp"
      ]
    }
  }
}

Project Structure

arxiv-mcp-server/
β”œβ”€β”€ arxiv_mcp/              # Main package
β”‚   β”œβ”€β”€ __init__.py
β”‚   β”œβ”€β”€ app.py              # FastMCP app setup
β”‚   β”œβ”€β”€ server.py           # Server entry point
β”‚   β”œβ”€β”€ utils.py            # arXiv API communication logic
β”‚   β”œβ”€β”€ resources/          # MCP resources (categories, authors, etc.)
β”‚   β”œβ”€β”€ tools/              # MCP tools (search, detail lookup, trends)
β”‚   └── prompts/            # Prompt templates (summarize, compare)
β”œβ”€β”€ pyproject.toml          # Project config & dependencies
└── README.md               # This file
No reviews yet β€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.