arxiv-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ARXIV_MCP_HOME | No | Cache root directory. | ~/.arxiv-mcp |
| ARXIV_MCP_MAX_PAPERS | No | Max cached papers before LRU eviction. | 200 |
| ARXIV_MCP_META_TTL_S | No | TTL (s) for 'latest' (unversioned) metadata. | 86400 |
| ARXIV_MCP_MAX_DISK_MB | No | Max cache disk (MB) before LRU eviction. | 2048 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_papersA | Search arXiv and return compact paper metadata. Provide a raw
If |
| get_paperA | Fetch full metadata for one paper by arXiv id. Accepts any id form: |
| read_paperA | Read a paper's full text, paginated so large papers don't overflow context. Extraction prefers arXiv HTML/LaTeX source and falls back to PDF; the result
is cached permanently per exact version. |
| download_paperA | Download a paper's raw Returns the local path. Use |
| start_sessionA | Open a caching session. Papers fetched with this |
| end_sessionA | Close a session, unpinning its papers so they become eligible for eviction. |
| session_statusB | Report the papers pinned to a session. |
| cache_statsA | Report cache usage: paper count, disk usage, limits, sessions. |
| list_cachedA | List cached papers (most-recently-accessed first) with size and pin state. |
| clear_cacheA | Evict cached papers. By default leaves papers pinned to open sessions;
set |
| list_categoriesA | List arXiv subject categories for building Pass a |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool has a clearly distinct purpose: categories, search, metadata fetch, full-text read, raw download, and session/cache management. There is no overlap or ambiguity between tool boundaries.
All tool names use snake_case and follow a consistent verb_noun pattern (list_categories, search_papers, get_paper, read_paper, download_paper, start_session, end_session, clear_cache), with the only slight deviations being session_status and cache_stats, which are still intuitive and consistent with the overall scheme.
Eleven tools is well-scoped for an arXiv server, covering search, retrieval, reading, downloading, and cache/session management. Each tool serves a clear need without unnecessary bloat or thinness.
The tool surface comprehensively covers the arXiv domain: category discovery, search, fetching metadata, reading full text, downloading raw files, and managing caching sessions. There are no obvious gaps for typical arXiv usage.