About
arXiv MCP Server provides natural language access to the arXiv academic preprint repository for searching, retrieving, and analyzing scholarly articles. Key capabilities: - Search arXiv by title, author, abstract keywords, or across all metadata fields - Retrieve detailed article metadata including authors, abstracts, and publication dates - Get direct PDF URLs and download full articles to your local machine - Load article content into LLM context with precise pagination controls (specific page ranges, maximum pages, character limits) - Preview articles before downloading to verify content
README
arXiv MCP Server
[](https://modelcontextprotocol.io) [](https://www.python.org/downloads/) [](https://opensource.org/licenses/MIT) [](https://smithery.ai/server/@prashalruchiranga/arxiv-mcp-server) A Model Context Protocol (MCP) server that enables interacting with the arXiv API using natural language.Features
Tools
title (String, optional)
- arxiv_id (String, optional)
title (String, optional)
- arxiv_id (String, optional)
title (String, optional)
- arxiv_id (String, optional)
- start_page (Int, optional, 1-based)
- end_page (Int, optional, 1-based)
- max_pages (Int, optional)
- max_chars (Int, optional)
- preview (Bool, optional; HEAD check only)
title (String, optional)
- arxiv_id (String, optional)
all_fields (String): General keyword search across all metadata fields
- title (String): Keyword(s) to search for within the titles of articles
- author (String): Author name(s) to filter results by
- abstract (String): Keyword(s) to search for within article abstracts
- start (Int): Index of the first result to return
- max_results (Int, default 10, up to 50)
Setup
MacOS
Clone 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.
`
Using Homebrew
brew install uv
or
curl -LsSf https://astral.sh/uv/install.sh | sh
`
Create and activate virtual environment.
`
uv venv --python=python3.13
source .venv/bin/activate
`
Install development dependencies.
`
uv sync
`
Windows
Install uv package manager. For more details on installing, visit the official uv documentation.
`
Use irm to download the script and execute it with iex
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
`
Close and reopen the shell, then clone the repository.
`
git clone https://github.com/prashalruchiranga/arxiv-mcp-server.git
cd arxiv-mcp-server
`
Create and activate virtual environment.
`
uv venv --python=python3.13
source .venv\Scripts\activate
`
Install development dependencies.
`
uv sync
`
Usage with Claude Desktop
To enable this integration, add the server configuration to your claude_desktop_config.json file. Make sure to create the file if it doesn’t exist.
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Roaming/Claude/claude_desktop_config.json
`
{
"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"
}
}
}
}
`
You may need to put the full path to the uv executable in the command field. You can get this by running which uv on MacOS or where uv on Windows.Deployment
Hosted platforms such as Smithery require HTTP transport. Set MCP_TRANSPORT=http; the server will bind to the PORT environment variable provided by the platform. The provided Docker/Smithery config also pins the SSE endpoints to /.well-known/mcp/sse and /.well-known/mcp/messages/ for spec compliance.
Hosted deployments expose Streamable HTTP at /mcp and serve a JSON schema at /.well-known/mcp-config so Smithery can provision per-session settings (currently just an optional downloadPath).
For local stdio integrations, no additional configuration is required—the server defaults to STDIO when PORT is not set.Example Prompts
``
Can you get the details of 'Reasoning to Learn from Latent Thoughts' Related MCP Servers
AI Research Assistant
hamid-vakilzadeh
AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar
Linkup
LinkupPlatform
Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages
Math-MCP
EthanHenrickson
Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support