MCP.so
Sign In

arXiv Search MCP Server

@danimal141

About arXiv Search MCP Server

An MCP server that provides tools to search and fetch papers from arXiv.org.

Basic information

Category

Search

License

MIT license

Runtime

node

Transports

stdio

Publisher

danimal141

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "arxiv-search-mcp": {
      "command": "deno",
      "args": [
        "cache",
        "--reload",
        "src/main.ts"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is arXiv Search MCP Server?

An MCP server that provides tools to search and fetch papers from arXiv.org. It allows users to search by category and retrieve the latest papers with formatted output, making it ideal for researchers and developers using MCP-compatible environments like Claude Desktop.

How to use arXiv Search MCP Server?

Requires Deno and an MCP-compatible environment. After cloning the repo and running deno cache --reload src/main.ts, you can run in dev mode with deno task dev or compile a binary with deno task compile. Then configure your MCP client (e.g., Claude Desktop) to point to the compiled binary. The server exposes a tool named search_arxiv that accepts category (string) and max_results (number, 1-100, default 5).

Key features of arXiv Search MCP Server

  • Search papers by arXiv category
  • Retrieve latest papers sorted by submission date
  • Formatted output: title, authors, summary, and link
  • Configurable number of results (1–100, default 5)
  • Supports many arXiv categories (e.g., cs.AI, cs.LG, astro-ph)

Use cases of arXiv Search MCP Server

  • A researcher fetches the latest 10 papers in machine learning from cs.LG.
  • A student gets recent publications in astrophysics for a literature review.
  • Integrate with Claude Desktop to answer questions about new papers in a field.
  • Quickly browse the newest submissions in computer vision (cs.CV) for project ideas.

FAQ from arXiv Search MCP Server

What parameters does the search_arxiv tool accept?

It accepts category (a string from the arXiv taxonomy) and max_results (a number from 1 to 100, default 5).

What prerequisites are needed to run the server?

You need Deno installed on your system and an MCP-compatible environment.

How do I integrate this server with Claude Desktop?

Add the compiled binary path to the mcpServers section of your claude_desktop_config.json as shown in the README.

What are some available arXiv categories?

Popular categories include cs.AI, cs.LG, cs.CL, cs.CV, cs.NE, cs.RO, astro-ph, physics, math, and q-bio. A full list is at the arXiv taxonomy page.

What is the maximum number of results I can fetch?

Up to 100 results per request; the default is 5.

Comments

More Search MCP servers