Price Per TokenPrice Per Token

ArXiv MCP Server

by blazickjp

0

About

ArXiv MCP Server connects AI assistants to arXiv's open-access repository of scientific papers, enabling programmatic search and retrieval of academic research. Key capabilities: - Query arXiv papers with filters for publication date ranges and subject categories - Download and access full paper content with local caching for faster subsequent retrieval - List and manage collections of downloaded papers - Integrate research workflows through built-in prompts - Store papers locally to reduce network dependencies and improve access speed

README

[](https://twitter.com/JoeBlazick) [](https://smithery.ai/server/arxiv-mcp-server) [](https://www.python.org/downloads/) [](https://github.com/blazickjp/arxiv-mcp-server/actions/workflows/tests.yml) [](https://opensource.org/licenses/MIT) [](https://pypi.org/project/arxiv-mcp-server/) [](https://pypi.org/project/arxiv-mcp-server/)

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 Model Context Protocol (MCP). It allows AI models to search for papers and access their content in a programmatic way.

🤝 Contribute • 📝 Report Bug

✨ 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"
    })
    

    📝 Research Prompts

    The server offers specialized prompts to help analyze academic papers:

    Paper Analysis Prompt

    A comprehensive workflow for analyzing academic papers that only requires a paper ID:

    result = await call_prompt("deep-paper-analysis", {
        "paper_id": "2401.12345"
    })
    

    This prompt includes:

  • Detailed instructions for using available tools (list_papers, download_paper, read_paper, search_papers)
  • A systematic workflow for paper analysis
  • Comprehensive analysis structure covering:
  • - Executive summary - Research context - Methodology analysis - Results evaluation - Practical and theoretical implications - Future research directions - Broader impacts

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

    Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Linkup

    Linkup

    LinkupPlatform

    Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages

    Web & Search
    2 24
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81