ArXiv MCP Server
The ArXiv MCP Server enables AI assistants to interact with arXiv papers through a programmatic interface. With this server, you can:
Search Papers: Query arXiv with filters for date ranges, categories, and result limits
Download Papers: Retrieve papers by arXiv ID, storing them locally for faster access
List Papers: View all previously downloaded papers stored locally
Read Papers: Access the full content of downloaded papers in markdown format
Research Tools: Utilize specialized prompts like "deep-paper-analysis" for comprehensive paper review
Development: Set up environments and run tests for development purposes
Provides a bridge between AI assistants and arXiv's research repository through the Message Control Protocol (MCP). Allows AI models to search for papers, download and read their content in a programmatic way.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ArXiv MCP Serversearch for recent papers about large language models in the cs.AI category"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
arxiv-mcp-server
A local MCP server for agent literature work. The differentiator is original-LaTeX section reads, BibTeX from arXiv metadata, and topic watches. Papers stay on disk. The working loop is paper ID → outline → one section → citations. Search is optional.
Install
The default install is uvx arxiv-mcp-server. Command-based integrations need uv, which provides uvx. No repository clone or Python environment setup is required.
uvx arxiv-mcp-serverAdd this stdio configuration to clients that accept the mcpServers JSON shape, such as Claude Desktop and Kiro. Other clients may use a top-level servers object, TOML, or their own settings UI; consult the client's MCP documentation.
{
"mcpServers": {
"arxiv": {
"type": "stdio",
"command": "uvx",
"args": ["arxiv-mcp-server"]
}
}
}The default paper directory is ~/.arxiv-mcp-server/papers. To choose another directory, append "--storage-path", "/absolute/path/to/papers" to args.
The supported package is published on PyPI as arxiv-mcp-server==0.7.2. An unrelated npm package uses the same name, so do not install this server with npm, pnpm, or npx arxiv-mcp-server.
Listed on the official MCP registry, latest 0.7.2.
Related MCP server: arxiv-mcp
Why this is not a search wrapper
Search, source retrieval, citation graphs, and downloads call their respective external services. What stays local is the literature loop: read author-submitted LaTeX one section at a time, export BibTeX from authoritative arXiv metadata, and keep topic watches on disk. The server runs locally over stdio by default.
Use the default JSON above unless your client has a one-line helper.
Claude Code
Add the MCP server for all projects:
claude mcp add --transport stdio --scope user arxiv -- uvx arxiv-mcp-serverFor the richer plugin integration—which installs the MCP connection plus the bundled arXiv research skill—register this repository as a marketplace and install the plugin:
claude plugin marketplace add blazickjp/arxiv-mcp-server
claude plugin install arxiv-mcp-server@arxiv-mcpVerify the direct MCP installation with claude mcp get arxiv. Restart Claude Code or run /reload-plugins after installing the plugin.
OpenAI Codex
Add the MCP server:
codex mcp add arxiv -- uvx arxiv-mcp-serverOr install the MCP connection and bundled research skill as a Codex plugin:
codex plugin marketplace add blazickjp/arxiv-mcp-server
codex plugin add arxiv-mcp-server@arxiv-mcpVerify the direct MCP installation with codex mcp get arxiv. Codex CLI, the Codex IDE extension, and Codex in the ChatGPT desktop app share this MCP configuration.
Hermes Agent
Add the server, approve the discovered tools, and test the saved connection:
hermes mcp add arxiv --command uvx --args arxiv-mcp-server
hermes mcp test arxivVS Code and Kiro
For the richer Kiro Power integration, open the Powers panel, choose Add Custom Power → Import power from GitHub, and enter:
https://github.com/blazickjp/arxiv-mcp-serverThe Power installs the MCP connection from mcp.json and adds focused arXiv research guidance. Kiro users who prefer manual configuration can place the generic configuration above in .kiro/settings/mcp.json for one workspace or ~/.kiro/settings/mcp.json for all workspaces.
Claude Desktop bundle
macOS users can install a bundled .mcpb extension from the v0.7.2 release or the latest GitHub release:
Apple Silicon:
arxiv-mcp-server-darwin-arm64-0.7.2.mcpb
Double-click the bundle, drag it into Claude Desktop, or open Settings → Extensions → Advanced settings → Install Extension…. The bundle includes the server dependencies and requires CPython 3.11.x.
Other MCP clients
Other clients may use a top-level servers object, TOML, or their own settings UI; consult the client MCP documentation. Direct MCP installation is the shortest path. Install a plugin when you also want the research workflow that steers the client toward focused searches, bounded reads, citation traversal, and section-level LaTeX retrieval.
Plugin manifests
The same MCP server and research skill are packaged for both major plugin systems:
Integration | Manifest | Marketplace |
Claude Code |
|
|
OpenAI Codex / ChatGPT Work |
|
|
Kiro Power |
|
|
Shared MCP launch |
|
|
Shared research workflow |
| Installed with either plugin |
If a desktop client cannot find uvx
Desktop applications do not always inherit the same PATH as your terminal. If uvx arxiv-mcp-server works in a terminal but the client reports that the server failed to connect, find the executable's absolute path:
# macOS and Linux
command -v uvx# Windows PowerShell
(Get-Command uvx).SourceReplace "command": "uvx" with the returned absolute path, then restart the client. Keep the args value unchanged.
If an existing installation is missing newer tools
uvx reuses cached tool environments. Force it to resolve the current PyPI release with a supported interpreter, then restart your MCP client:
uvx --python 3.11 --refresh-package arxiv-mcp-server arxiv-mcp-serverIf your client still launches an older environment, add "--python", "3.11" before "arxiv-mcp-server" in its args array.
Persistent command install
To place arxiv-mcp-server on your PATH instead of launching it through uvx:
uv tool install arxiv-mcp-serverIf the command is not immediately available, run uv tool update-shell and restart the terminal. Afterward, use "command": "arxiv-mcp-server" and omit the package name from args.
Tools
The server currently exposes 19 tools.
Tool | Purpose | Notes |
| Search arXiv by query, category, date, and sort order | Default ≤5 compact results ( |
| Fetch metadata and an abstract by arXiv ID | Does not download the paper |
| Download and convert a paper to local Markdown | HTML first; PDF fallback uses |
| List papers stored locally | Returns id, title, authors, published; |
| Read locally stored paper content | Bounded to 12,000 chars by default; supports |
| Paginated markdown heading outline | Stable hierarchical section IDs |
| Read one bounded markdown section | By outline ID or unique title |
| Bounded passage search in a paper | Source offsets; no Torch required |
| Retrieve bounded author-submitted LaTeX | Remote arXiv source archive |
| Return a paginated LaTeX outline | Supports |
| Read one bounded LaTeX section | Select by outline ID or exact title |
| Fetch references and citing papers | Remote Semantic Scholar API (1 call per paper, cached on disk); optional free API key improves reliability |
| Export BibTeX for one or more arXiv IDs | Authoritative arXiv metadata |
| Save or update an arXiv topic watch | Stored locally; omit |
| List saved topic watches | Read-only; does not advance last_checked |
| Check saved watches for new papers | Returns papers since the last check |
| Delete a saved topic watch | Exact topic match; not-found if missing |
| Search downloaded papers by semantic similarity | Requires |
| Rebuild the local semantic index | Requires |
Research alerts (watch_topic)
Save standing topic watches with watch_topic, inspect them with list_watches, poll with check_alerts, and remove with unwatch_topic.
When updating an existing watch (same topic string):
Omit
categories→ preserve the stored category filters (and other fields you leave unchanged).Pass
categories: []→ clear category filters.Pass a non-empty list → replace the stored filters.
Create path: omitting categories stores an empty list (no category filter).
search_papers query guide
Tool schemas stay short on purpose. Use this section (not the always-loaded MCP description) for query tutorials, category catalogs, and workflow examples.
Query construction
Use quoted phrases for exact matches:
"multi-agent systems","neural networks"Combine related concepts with OR:
"AI agents" OR "software agents"Field-specific searches:
ti:"exact title phrase",au:"author name",abs:"keyword",cat:cs.LGExclude with ANDNOT:
"machine learning" ANDNOT "survey"Prefer 2–4 core concepts over long keyword lists
Advanced patterns
Field + phrase:
ti:"transformer architecture"Multiple fields:
au:"Smith" AND ti:"quantum"Exclusions:
"deep learning" ANDNOT ("survey" OR "review")Broad + narrow:
"artificial intelligence" AND (robotics OR "computer vision")
Category filtering (recommended for relevance)
Computer Science: cs.AI (AI), cs.LG (ML), cs.CL (NLP), cs.CV (vision), cs.MA (multi-agent), cs.RO (robotics), cs.NE (neural/evolutionary), cs.IR (IR), cs.HC (HCI), cs.CR (security), cs.DB (databases)
Statistics & Math: stat.ML, stat.AP, math.OC, math.ST
Physics & other: quant-ph, eess.SP, eess.AS, physics.data-an
Effective examples
ti:"reinforcement learning"withcategories: ["cs.LG", "cs.AI"]au:"Hinton" AND "deep learning"withcategories: ["cs.LG"]"multi-agent" ANDNOT "survey"withcategories: ["cs.MA"]abs:"transformer" AND ti:"attention"withcategories: ["cs.CL"]
Dates and sorting
Dates use
YYYY-MM-DD(date_from/date_to)Default
sort_byisrelevance; usedatefor newest-first monitoringFoundational work:
date_to: "2010-12-31"with title/abstract field searches
Result size, abstracts, and pagination
Default
max_resultsis 5 (cap 50). Pass an explicit value for larger pages.abstract_mode:snippet(default, ~280 chars, marked… [truncated]when cut),full(complete abstract), ornone(omit abstracts). Other metadata (title, authors, categories, dates, URLs) is always returned.Responses report
total_results(corpus hits),returned,has_more,start,next_start, andabstract_modePass
start=next_startwith the sameabstract_modefor the next pagearXiv enforces ~3 seconds between requests (handled server-side); on rate-limit errors wait ~60s
Search and inspect a paper
Ask your MCP client to call search_papers with:
{
"query": "\"Kolmogorov-Arnold Networks\"",
"categories": ["cs.LG", "cs.AI"],
"sort_by": "date"
}Defaults return up to five compact results with abstract snippets. Use "abstract_mode": "full" when you need complete abstracts in the search response, or call get_abstract for a single paper after a compact search:
{
"paper_id": "2404.19756"
}Do not call get_abstract again for papers already returned with abstract_mode=full.
Download and read full text
Call download_paper with:
{
"paper_id": "2404.19756"
}Omitting max_chars returns a bounded first chunk (default 12,000 paper characters). Cached papers are returned immediately. Pass "force": true to re-download and overwrite the local markdown and sidecar (also happens automatically when the HTML extractor version changes).
Then page through the cached content with read_paper:
{
"paper_id": "2404.19756",
"start": 0
}Or continue from a prior chunk:
{
"paper_id": "2404.19756",
"start": 12000
}Large-content responses include content_length, returned_chars, next_start, is_truncated, and (when truncated) next_retrieval with the next-call instruction. Pass next_start into the next call's start to continue reading. Pass an explicit max_chars to override the default chunk size, or "return_full_text": true to opt into the previous unbounded full-paper response.
Migration notes (bounded content default)
Previously, omitting max_chars on download_paper / read_paper returned the entire paper. That default is now a 12,000-character chunk so a single MCP tool call cannot flood the client context window.
Need | Call |
First bounded chunk (new default) |
|
Continue reading |
|
Custom chunk size |
|
Old unbounded behavior |
|
Clients that already passed max_chars are unchanged. Only callers that relied on the omitted-max_chars = full-text behavior need to add return_full_text: true or page via next_start.
Read original LaTeX by section
Call get_paper_latex with:
{
"paper_id": "1706.03762"
}Get the first page of its section outline with list_paper_latex_sections:
{
"paper_id": "1706.03762",
"start": 0,
"max_sections": 100
}Then call get_paper_latex_section using an ID from that outline:
{
"paper_id": "1706.03762",
"section_id": "3.2",
"max_chars": 12000
}LaTeX archives are validated, size-limited, and cached locally before content is returned.
Optional dependencies
Choose the install variant that matches the features you need:
# Base server
uv tool install arxiv-mcp-server
# Base server plus PDF conversion
uv tool install "arxiv-mcp-server[pdf]"
# Base server plus local semantic search
uv tool install "arxiv-mcp-server[pro]"If the base tool is already installed, reinstall the selected variant:
uv tool install --force "arxiv-mcp-server[pdf]"The pdf extra installs pymupdf4llm and pymupdf-layout for papers without usable arXiv HTML. The pro extra adds local embedding dependencies for semantic_search and reindex; semantic search only operates on papers already downloaded to the configured storage directory.
For older papers that require PDF conversion, run the package with its PDF extra:
{
"mcpServers": {
"arxiv": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"arxiv-mcp-server[pdf]",
"arxiv-mcp-server"
]
}
}
}Built-in prompts
The server provides seven MCP prompt workflows. Prompt availability depends on the client; the server provides workflow instructions but does not run a separate model.
Prompt | Required arguments | Purpose |
|
| Map terminology, searches, papers, research clusters, and a reading path |
|
| Analyze one paper in depth |
|
| Summarize methods, results, and limitations |
|
| Compare multiple papers |
|
| Synthesize a topic and optional paper set |
|
| Synthesize themes, methods, timelines, or gaps across papers |
|
| Formulate grounded, falsifiable research questions |
Streamable HTTP
For deployments where stdio is not practical:
TRANSPORT=http HOST=127.0.0.1 PORT=8080 \
uvx arxiv-mcp-server --storage-path /absolute/path/to/papersPowerShell:
$env:TRANSPORT = "http"
$env:HOST = "127.0.0.1"
$env:PORT = "8080"
uvx arxiv-mcp-server --storage-path C:\absolute\path\to\papersConnect clients to:
{
"mcpServers": {
"arxiv": {
"type": "http",
"url": "http://127.0.0.1:8080/mcp"
}
}
}Cloud and load-balancer probes should GET http://<host>:<port>/healthz. It returns 200 with body ok once the HTTP server is listening. There is no separate /ready check: if the process is up, it is ready. The stdio transport has no HTTP endpoints.
The server binds to 127.0.0.1 by default and enables MCP DNS-rebinding protection. If a reverse proxy exposes the server, keep the process on a private interface and provide authentication and network controls upstream. Use ALLOWED_HOSTS and ALLOWED_ORIGINS for the host and origin values forwarded by the proxy.
Configuration
Setting | Default | Purpose |
|
| Paper, source-cache, alert, and index storage |
|
| Server-side cap for result counts |
|
| PDF fallback download timeout in seconds |
|
|
|
|
| HTTP bind host |
|
| HTTP bind port |
| empty | Additional accepted HTTP Host values |
| empty | Additional accepted HTTP Origin values |
| empty | Free Semantic Scholar API key for |
Environment variable names are case-insensitive through Pydantic settings. --storage-path is a command-line option rather than an environment setting.
Security
Paper text and LaTeX are untrusted external content. A paper can contain text intended to manipulate an AI client into ignoring its instructions or calling unrelated tools.
Do not treat instructions found inside a paper as trusted commands.
Use client approval controls for shell, browser, filesystem, and messaging tools.
Review generated summaries before taking external actions.
Keep Streamable HTTP private unless authentication is provided upstream.
See SECURITY.md for the reporting policy and threat details.
Development
git clone https://github.com/blazickjp/arxiv-mcp-server.git
cd arxiv-mcp-server
uv sync --extra test --extra dev
uv run pytest
uv run black --check .Run the development checkout from an MCP client with:
{
"mcpServers": {
"arxiv-dev": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/arxiv-mcp-server",
"run",
"arxiv-mcp-server"
]
}
}
}Contributions are welcome. Read CONTRIBUTING.md before opening a pull request, and use GitHub Issues for reproducible bugs or scoped feature proposals.
License
Apache License 2.0. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA bridge between AI assistants and ArXiv's research repository that enables searching, downloading, and reading academic papers through the Message Control Protocol.1MIT
- FlicenseAqualityDmaintenanceA streamlined MCP server that connects AI assistants to arXiv's vast collection of academic papers, enabling search, retrieval, and analysis of research papers.71
- FlicenseNot gradedqualityDmaintenanceAn advanced scholarly research MCP server that enables AI assistants to discover, fetch, process, and manage academic papers across multiple sources like arXiv, PubMed, and Semantic Scholar, with capabilities for summarization, citation analysis, and concept relationship extraction.2
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that provides AI assistants with a seamless, programmatic interface to search and read academic papers from the open-access arXiv repository.2MIT
Related MCP Connectors
Academic research MCP server for paper search, citation checks, graphs, and deep research.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Search arXiv and ACL Anthology, retrieve citations and references, and browse web sources to accel…
Appeared in Searches
- A server for discovering research approaches and analyzing documents
- Technology pre-research resources
- A search for literature reviews and academic research resources
- A server for searching research papers, Kaggle datasets, and websites for ML/AI model training data
- Academic paper search and research methodology analysis tool
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/blazickjp/arxiv-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server