drio
Open app

ArXiv MCP Server

Source

A Model Context Protocol server for searching and analyzing arXiv papers

Catalog onlyCatalog onlySTDIO

Overview

The ArXiv MCP Server is a Model Context Protocol server that facilitates searching and analyzing academic papers from the arXiv repository, designed to be used by AI assistants.

To utilize the server, clone the repository, set up a virtual environment, and install the dependencies. Then, integrate the server into your MCP client configuration.

  • Paper Search: Query papers with date and category filters. - Paper Access: Download and read the paper content easily. - Paper Listing: See all papers that have been downloaded. - Local Storage: Save papers locally for quick access.
  1. AI systems retrieving relevant research papers based on queries.
  2. Researchers accessing papers in a programmatic manner for analysis.
  3. Developers integrating scholarly resources into applications.

Add to your AI client

Use these steps to connect ArXiv MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

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

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

**What is the MCP?**

The Message Control Protocol is a communications protocol that allows AI models to interact with various systems.

**Is there a cost associated with using the ArXiv MCP Server?**

No, the server is open-source and free to use under the MIT License.

**How do I get help if I encounter an issue?**

Issues can be reported on the project's GitHub page, and community support is encouraged.