ArXiv MCP Server

An MCP server that enables interacting with the arXiv API using natural language

Remote serverstreamable-httpPython

What is the ArXiv MCP server?

ArXiv MCP server exists for a simple reason — assistants are far more useful when they can act on ArXiv directly instead of describing what you should do. An MCP server that enables interacting with the arXiv API using natural language.

What you get

  • Retrieve metadata about scholarly articles hosted on arXiv.org
  • Download articles in PDF format to the local machine
  • Search arXiv database for a particular query
  • Retrieve articles and load them into a large language model (LLM) context

What the assistant can call

Once ArXiv is connected, these are the calls the assistant has available:

  • get_article_url — Retrieve the URL of an article hosted on arXiv.org based on its title
  • download_article — Download the article hosted on arXiv.org as a PDF file
  • load_article_to_context — Load the article hosted on arXiv.org into context of a LLM
  • get_details — Retrieve metadata of an article hosted on arXiv.org based on its title
  • search_arxiv — Performs a search query on the arXiv API based on specified parameters and returns matching article metadata
  • MacOS — Clone the repository git clone https://github.com/prashalruchiranga/arxiv-mcp-server.git cd arxiv-mcp-server Install uv package manager. For more
  • Windows — Install uv package manager. For more details on installing, visit the [official uv documentation](https://docs.astral.sh/uv/getting-started/installati

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration and credentials

You will need one environment variable: DOWNLOAD_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. ArXiv's toolset — get_article_url, download_article, load_article_to_context and 4 more — is a fair guide to whether it matches your workflow. It is maintained by prashalruchiranga; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against ArXiv's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the arxiv mcp server does with a few real requests.

Available tools

ToolWhat it does
get_article_urlRetrieve the URL of an article hosted on arXiv.org based on its title
download_articleDownload the article hosted on arXiv.org as a PDF file
load_article_to_contextLoad the article hosted on arXiv.org into context of a LLM
get_detailsRetrieve metadata of an article hosted on arXiv.org based on its title
search_arxivPerforms a search query on the arXiv API based on specified parameters and returns matching article metadata
MacOSClone the repository git clone https://github.com/prashalruchiranga/arxiv-mcp-server.git cd arxiv-mcp-server Install uv package manager. For more details on installing, visit the [official uv documentation](https://docs.
WindowsInstall uv package manager. For more details on installing, visit the [official uv documentation](https://docs.astral.sh/uv/getting-started/installation/).

How to install the ArXiv MCP server

{
  "mcpServers": {
    "arxiv-server": {
      "command": "uv",
      "args": [
        "--directory",
        "/ABSOLUTE/PATH/TO/PARENT/FOLDER/arxiv-mcp-server/src/arxiv_server",
        "run",
        "server.py"
      ],
      "env": {
        "DOWNLOAD_PATH": "/ABSOLUTE/PATH/TO/DOWNLOADS/FOLDER"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DOWNLOAD_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use ArXiv to get article url.
  • Use ArXiv to download article.
  • Use ArXiv to load article to context.

Frequently asked questions

Five tools: `get_article_url`, `download_article`, `load_article_to_context`, `get_details`, and `search_arxiv`.