The ArXiv MCP Server provides a bridge between AI assistants and arXiv's research repository through the Model Context Protocol (MCP). It allows AI models to search for papers and access their content in a programmatic way. ๐ค Contribute โข ๐ Report Bug - ๐ Paper Search: Query arXiv papers with filters for date ranges and categories - ๐ Paper Access: Download and read paper content - ๐ Paper Li
Add this skill
npx mdskills install blazickjp/arxiv-mcp-serverWell-documented MCP server with four clear tools for searching, downloading, and analyzing arXiv papers
1[](https://twitter.com/JoeBlazick)2[](https://smithery.ai/server/arxiv-mcp-server)3[](https://www.python.org/downloads/)4[](https://github.com/blazickjp/arxiv-mcp-server/actions/workflows/tests.yml)5[](https://opensource.org/licenses/MIT)6[](https://pypi.org/project/arxiv-mcp-server/)7[](https://pypi.org/project/arxiv-mcp-server/)89# ArXiv MCP Server1011> ๐ Enable AI assistants to search and access arXiv papers through a simple MCP interface.1213The ArXiv MCP Server provides a bridge between AI assistants and arXiv's research repository through the Model Context Protocol (MCP). It allows AI models to search for papers and access their content in a programmatic way.1415<div align="center">1617๐ค **[Contribute](https://github.com/blazickjp/arxiv-mcp-server/blob/main/CONTRIBUTING.md)** โข18๐ **[Report Bug](https://github.com/blazickjp/arxiv-mcp-server/issues)**1920<a href="https://www.pulsemcp.com/servers/blazickjp-arxiv-mcp-server"><img src="https://www.pulsemcp.com/badge/top-pick/blazickjp-arxiv-mcp-server" width="400" alt="Pulse MCP Badge"></a>21</div>2223## โจ Core Features2425- ๐ **Paper Search**: Query arXiv papers with filters for date ranges and categories26- ๐ **Paper Access**: Download and read paper content27- ๐ **Paper Listing**: View all downloaded papers28- ๐๏ธ **Local Storage**: Papers are saved locally for faster access29- ๐ **Prompts**: A Set of Research Prompts3031## ๐ Quick Start3233### Installing via Smithery3435To install ArXiv Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/arxiv-mcp-server):3637```bash38npx -y @smithery/cli install arxiv-mcp-server --client claude39```4041### Installing Manually42Install using uv:4344```bash45uv tool install arxiv-mcp-server46```4748For development:4950```bash51# Clone and set up development environment52git clone https://github.com/blazickjp/arxiv-mcp-server.git53cd arxiv-mcp-server5455# Create and activate virtual environment56uv venv57source .venv/bin/activate5859# Install with test dependencies60uv pip install -e ".[test]"61```6263### ๐ MCP Integration6465Add this configuration to your MCP client config file:6667```json68{69 "mcpServers": {70 "arxiv-mcp-server": {71 "command": "uv",72 "args": [73 "tool",74 "run",75 "arxiv-mcp-server",76 "--storage-path", "/path/to/paper/storage"77 ]78 }79 }80}81```8283For Development:8485```json86{87 "mcpServers": {88 "arxiv-mcp-server": {89 "command": "uv",90 "args": [91 "--directory",92 "path/to/cloned/arxiv-mcp-server",93 "run",94 "arxiv-mcp-server",95 "--storage-path", "/path/to/paper/storage"96 ]97 }98 }99}100```101102## ๐ก Available Tools103104The server provides four main tools:105106### 1. Paper Search107Search for papers with optional filters:108109```python110result = await call_tool("search_papers", {111 "query": "transformer architecture",112 "max_results": 10,113 "date_from": "2023-01-01",114 "categories": ["cs.AI", "cs.LG"]115})116```117118### 2. Paper Download119Download a paper by its arXiv ID:120121```python122result = await call_tool("download_paper", {123 "paper_id": "2401.12345"124})125```126127### 3. List Papers128View all downloaded papers:129130```python131result = await call_tool("list_papers", {})132```133134### 4. Read Paper135Access the content of a downloaded paper:136137```python138result = await call_tool("read_paper", {139 "paper_id": "2401.12345"140})141```142143## ๐ Research Prompts144145The server offers specialized prompts to help analyze academic papers:146147### Paper Analysis Prompt148A comprehensive workflow for analyzing academic papers that only requires a paper ID:149150```python151result = await call_prompt("deep-paper-analysis", {152 "paper_id": "2401.12345"153})154```155156This prompt includes:157- Detailed instructions for using available tools (list_papers, download_paper, read_paper, search_papers)158- A systematic workflow for paper analysis159- Comprehensive analysis structure covering:160 - Executive summary161 - Research context162 - Methodology analysis163 - Results evaluation164 - Practical and theoretical implications165 - Future research directions166 - Broader impacts167168## โ๏ธ Configuration169170Configure through environment variables:171172| Variable | Purpose | Default |173|----------|---------|---------|174| `ARXIV_STORAGE_PATH` | Paper storage location | ~/.arxiv-mcp-server/papers |175176## ๐งช Testing177178Run the test suite:179180```bash181python -m pytest182```183184## ๐ License185186Released under the MIT License. See the LICENSE file for details.187188---189190<div align="center">191192Made with โค๏ธ by the Pearl Labs Team193194<a href="https://glama.ai/mcp/servers/04dtxi5i5n"><img width="380" height="200" src="https://glama.ai/mcp/servers/04dtxi5i5n/badge" alt="ArXiv Server MCP server" /></a>195</div>196
Full transparency โ inspect the skill content before installing.