🧠 arXiv Research Assistant MCP Server
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.
✨ 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
1. Installation from PyPI
pip install arxiv-paper-mcp
# or with uv
uv install arxiv-paper-mcp
🔧 2. Clone the repository (for development)
git clone https://github.com/daheepk/arxiv-mcp-server.git
cd arxiv-mcp-server
🔧 3. Install Dependencies (for development)
Use uv to install all dependencies in editable mode:
uv pip install -e .
⚙️ How to Run
▶️ Run the server (locally)
uv run mcp dev arxiv_mcp/server.py
🔌 Use with Claude
To use this MCP server with Claude, add the following JSON configuration to Claude’s MCP settings:
{
"arXivPaper": {
"command": "uv",
"args": [
"run",
"--with",
"arxiv-paper-mcp>=0.1.0",
"arxiv-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
arXiv Research Assistant
Project Details
- daheepk/arxiv-paper-mcp
- Last Updated: 4/22/2025
Recomended MCP Servers
Dify is an open-source LLM app development platform. Dify's intuitive interface combines AI workflow, RAG pipeline, agent capabilities,...
mcp-suiteg
Flutter ChatGPT APP. The chatgpt chat app implemented by flutter supports custom modes and contextual continuous dialogue. In...
A zero-installation solution for AI agents to control remote macOS systems. Full desktop capabilities without extra software, using...
Model Context Protocol Servers
A powerful browser automation and testing server using the Model Context Protocol (MCP). Enables AI agents to control...
A Model Context Protocol (MCP) server that provides persistent memory and multi-model LLM support.
This a simple implementation of an MCP server using iFlytek. It enables calling iFlytek workflows through MCP tools.
Dexscreener API's MCP server - let your AI agent check any on-chain price using Dexscreener's free and open...





