ArXiv MCP Server

ArXiv MCP Server

Contribute to huanongfish/arxiv-mcp development by creating an account on GitHub.

huanongfish

Research & Data
Search
Note Taking
Visit Server

README

Twitter Follow smithery badge Python Version License: MIT PyPI Downloads PyPI Version

ArXiv MCP Server

🔍 Enable AI assistants to search and access arXiv papers through a simple MCP interface.

The ArXiv MCP Server provides a bridge between AI assistants and arXiv's research repository through the Message Control Protocol (MCP). It allows AI models to search for papers and access their content in a programmatic way.

<div align="center">

🤝 Contribute • 📝 Report Bug

</div>

✨ Core Features

  • 🔎 Paper Search: Query arXiv papers with filters for date ranges and categories
  • 📄 Paper Access: Download and read paper content
  • 📋 Paper Listing: View all downloaded papers
  • 🗃️ Local Storage: Papers are saved locally for faster access
  • 📝 Prompts: A Set of Research Prompts

🚀 Quick Start

Installing via Smithery

To install ArXiv Server for Claude Desktop automatically via Smithery:

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

Installing Manually

Install using uv:

uv tool install arxiv-mcp-server

For development:

# Clone and set up development environment
git clone https://github.com/blazickjp/arxiv-mcp-server.git
cd arxiv-mcp-server

# Create and activate virtual environment
uv venv
source .venv/bin/activate

# Install with test dependencies
uv pip install -e ".[test]"

🔌 MCP Integration

Add this configuration to your MCP client config file:

{
    "mcpServers": {
        "arxiv-mcp-server": {
            "command": "uv",
            "args": [
                "tool",
                "run",
                "arxiv-mcp-server",
                "--storage-path", "/path/to/paper/storage"
            ]
        }
    }
}

For Development:

{
    "mcpServers": {
        "arxiv-mcp-server": {
            "command": "uv",
            "args": [
                "--directory",
                "path/to/cloned/arxiv-mcp-server",
                "run",
                "arxiv-mcp-server",
                "--storage-path", "/path/to/paper/storage"
            ]
        }
    }
}

💡 Available Tools

The server provides four main tools:

1. Paper Search

Search for papers with optional filters:

result = await call_tool("search_papers", {
    "query": "transformer architecture",
    "max_results": 10,
    "date_from": "2023-01-01",
    "categories": ["cs.AI", "cs.LG"]
})

2. Paper Download

Download a paper by its arXiv ID:

result = await call_tool("download_paper", {
    "paper_id": "2401.12345"
})

3. List Papers

View all downloaded papers:

result = await call_tool("list_papers", {})

4. Read Paper

Access the content of a downloaded paper:

result = await call_tool("read_paper", {
    "paper_id": "2401.12345"
})

⚙️ Configuration

Configure through environment variables:

Variable Purpose Default
ARXIV_STORAGE_PATH Paper storage location ~/.arxiv-mcp-server/papers

🧪 Testing

Run the test suite:

python -m pytest

📄 License

Released under the MIT License. See the LICENSE file for details.


<div align="center">

Made with ❤️ by the Pear Labs Team

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

Recommended Servers

Kagi MCP Server

Kagi MCP Server

A Model Context Protocol (MCP) server for Kagi search. - kagisearch/kagimcp

Official
Featured
Python
Exa Search

Exa Search

Claude can perform Web Search | Exa with MCP (Model Context Protocol) - exa-labs/exa-mcp-server

Official
Featured
Apple MCP Server

Apple MCP Server

Collection of apple-native tools for the model context protocol. - Dhravya/apple-mcp

Featured
Local
TypeScript
Todoist MCP Server

Todoist MCP Server

MCP server for Todoist integration enabling natural language task management with Claude - abhiz123/todoist-mcp-server

Featured
JavaScript
Tavily MCP Server

Tavily MCP Server

An MCP server for Tavily's search API. Contribute to RamXX/mcp-tavily development by creating an account on GitHub.

Featured
Python
Todoist MCP Server

Todoist MCP Server

Todoist MCP Server Extended - Enabling natural language management of todoist via Claude, MCP and todoist REST APIv2. Featuring LLM optimized Tools including batch operations and robust error handling. - Chrusic/todoist-mcp-server-extended

Featured
JavaScript
Google Search Console MCP Server

Google Search Console MCP Server

A Model Context Protocol (MCP) server providing access to Google Search Console - ahonn/mcp-server-gsc

Featured
TypeScript
Crypto Price & Market Analysis MCP Server

Crypto Price & Market Analysis MCP Server

A Model Context Protocol (MCP) server that provides real-time cryptocurrency analysis via CoinCap's API. Enables Claude and other MCP clients to fetch crypto prices, analyze market trends, and track historical data. - truss44/mcp-crypto-price

Featured
TypeScript
The Verge News MCP Server

The Verge News MCP Server

MCP server for The Verge news RSS feed. Contribute to manimohans/verge-news-mcp development by creating an account on GitHub.

Featured
TypeScript
serper-search-scrape-mcp-server

serper-search-scrape-mcp-server

Serper MCP Server supporting search and webpage scraping - marcopesani/mcp-server-serper

Featured
TypeScript