arxiv-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| convert_arxiv_to_markdownA | Convert an arXiv paper to Markdown format using the arxiv2md.org API. This tool takes an arXiv URL and converts the paper to Markdown format via the arxiv2md.org API service. Rate Limited: This tool is subject to a server-wide rate limit of 3 requests/second. |
| extract_arxiv_idA | Extract the arXiv ID from a given arXiv URL. This utility tool extracts the paper ID from various arXiv URL formats. Rate Limited: This tool is subject to a server-wide rate limit of 3 requests/second. |
| build_arxiv_urlsA | Build various arXiv URLs from a paper ID. Given an arXiv paper ID, this tool generates all common URL formats for the paper. Rate Limited: This tool is subject to a server-wide rate limit of 3 requests/second. |
| search_arxivB | Search for arXiv papers by keyword, category, and date range. This tool queries the arXiv API to find papers matching the given search criteria. Results are returned in order of relevance. Rate Limited: This tool is subject to a server-wide rate limit of 3 requests/second. |
| get_author_papersB | Retrieve papers by a specific author from arXiv. This tool queries the arXiv API for papers authored by the given name. Results are returned in order of relevance/recency. Rate Limited: This tool is subject to a server-wide rate limit of 3 requests/second. |
| get_related_papersA | Find papers related to a given arXiv paper. This tool extracts the paper ID from the given URL, fetches its metadata (title and categories), then searches for related papers using title keywords and the paper's primary category. Rate Limited: This tool is subject to a server-wide rate limit of 3 requests/second. |
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 6 tools
Each tool has a distinct purpose: ID extraction, URL building, Markdown conversion, keyword search, author search, and related-paper discovery. The boundaries are clear despite several tools operating on arXiv URLs or IDs.
Names are consistently snake_case and mostly follow a verb_noun pattern (extract_arxiv_id, build_arxiv_urls, search_arxiv, get_author_papers, get_related_papers). The only minor deviation is convert_arxiv_to_markdown, which uses a longer verb_object_preposition_object form.
Six tools is well within the typical 3-15 range and each tool earns its place for an arXiv-focused server. The set covers URL utilities, conversion, and several retrieval modes without being bloated.
The server covers search, author lookup, related papers, URL building, ID extraction, and Markdown conversion, but lacks a direct get_paper_by_id or get_paper_metadata operation. Agents cannot easily retrieve a specific paper's metadata/abstract by ID, which is a notable gap.