arXiv MCP Server

✓ verified

Search, download, and read arXiv research papers.

Don't have ToolPiper? We'll take you to the download.

Open repository →

Publisher

Community (blazickjp)

License

Apache-2.0

Transport

Local subprocess

Tools

4

What this server does

The arXiv MCP server lets the assistant search the arXiv preprint corpus, download papers by ID, and read their full text. Downloaded PDFs are cached in a folder you choose, so a paper read once is available offline for follow-up questions. It is the standard way to ground a research conversation in primary sources: search by topic and date, pull the relevant papers, then ask the model to compare methods or extract results across them.

Tools included

  • search_papers

    Search arXiv by query, category, and date.

  • download_paper

    Download a paper PDF by arXiv ID.

  • read_paper

    Read the text of a downloaded paper.

  • list_papers

    List papers cached in the storage directory.

The authoritative list comes from the server's tools/list at runtime. This catalog entry may lag the upstream until the next ToolPiper release.

Install in ToolPiper

ToolPiper handles the JSON configuration. Click Install, fill in any required tokens, and the server is ready in your chat.

Don't have ToolPiper? We'll take you to the download.

Install in another client

Install in another MCP client (Claude Desktop, Cursor, Continue, Cline)

Add this to ~/Library/Application Support/Claude/claude_desktop_config.json.

{
  "mcpServers": {
    "arxiv": {
      "command": "uvx",
      "args": [
        "arxiv-mcp-server",
        "--storage-path",
        "${ARXIV_STORAGE_PATH}"
      ]
    }
  }
}

Example prompts

  • "Search arXiv for recent papers on state space models in language modeling."

  • "Download paper 2310.06825 and summarize its main contribution."

  • "Compare the evaluation setups across the three papers I just downloaded."

Security notes

No credentials are required; arXiv is public. The only configuration is the storage directory, which the server reads and writes under. Point it at a dedicated folder, not your home directory. Downloaded PDFs are untrusted documents; the worst case is disk usage from a large download batch.

Related tools