stackupdev/arXiv-mcp-server-pro
If you are the rightful owner of arXiv-mcp-server-pro and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The ArXiv MCP Server is a tool that enables AI assistants to search and access arXiv papers through a Model Context Protocol (MCP) interface, now with Docker integration.
ArXiv MCP Server
Enhanced Fork with Official Docker Registry Integration
🔍 Enable AI assistants to search and access arXiv papers through a simple MCP interface.
🐳 NEW: Now officially available in Docker's MCP Registry with full integration
This enhanced fork includes:
- ✅ Docker MCP Registry contribution - MERGED 🎉
- ✅ Full Docker Desktop MCP Toolkit integration
- ✅ Production-ready Docker deployment with volume mounting
- ✅ Comprehensive documentation and guides
- ✅ All original ArXiv MCP server functionality
🎯 Docker MCP Registry Contribution
Status: ✅ MERGED - Pull Request #66 🎉
This fork was specifically enhanced to contribute the ArXiv MCP Server to Docker's official registry, making academic research tools accessible through Docker Desktop MCP Toolkit. The contribution includes:
- Production Docker deployment ready for widespread adoption
- Volume mounting workarounds solving fundamental Docker MCP Toolkit limitations
- Universal utility scripts benefiting the entire MCP community
- Professional documentation and comprehensive user guides
Impact: ArXiv MCP Server is now available to researchers, academics, and AI developers worldwide through Docker's official registry!
The ArXiv MCP Server provides a bridge between AI assistants and arXiv's research repository through the Model Context Protocol (MCP). It allows AI models to search for papers and access their content in a programmatic way.
🤝 Contribute • 📝 Report Bug • 🐳 Docker Registry ✅
✨ Core Features
- 🔎 Paper Search: Query arXiv papers with filters for date ranges and categories
- 📄 Paper Access: Download and read paper content
- 📋 Paper Listing: View all downloaded papers
- 🗃️ Local Storage: Papers are saved locally for faster access
- 📝 Prompts: A Set of Research Prompts
- 🐳 Docker Ready: Official Docker MCP Registry integration with volume mounting
🚀 Quick Start
Installing via Smithery
To install ArXiv Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install arxiv-mcp-server --client claude
Installing Manually
Install using uv:
uv tool install arxiv-mcp-server
For development:
# Clone and set up development environment
git clone https://github.com/blazickjp/arxiv-mcp-server.git
cd arxiv-mcp-server
# Create and activate virtual environment
uv venv
source .venv/bin/activate
# Install with test dependencies
uv pip install -e ".[test]"
🔌 MCP Integration
Add this configuration to your MCP client config file:
{
"mcpServers": {
"arxiv-mcp-server": {
"command": "uv",
"args": [
"tool",
"run",
"arxiv-mcp-server"
],
"env": {
"ARXIV_STORAGE_PATH": "/path/to/paper/storage"
}
}
}
}
For Development:
{
"mcpServers": {
"arxiv-mcp-server": {
"command": "uv",
"args": [
"--directory",
"path/to/cloned/arxiv-mcp-server",
"run",
"arxiv-mcp-server"
],
"env": {
"ARXIV_STORAGE_PATH": "/path/to/paper/storage"
}
}
}
}
🐳 Docker Integration
Great News! The ArXiv MCP Server is now officially available in the Docker MCP Registry with full volume mounting support! 🎉
Using with Docker Desktop MCP Toolkit
- Install from Docker Registry: Available directly through Docker Desktop's MCP Toolkit
- Automatic Volume Mounting: Downloaded papers are automatically accessible on your host machine
- No Configuration Required: Works out of the box with proper volume mounting
Additional Features
The server includes comprehensive research analysis prompts and full paper content access, making it perfect for academic research workflows.
🏆 Technical Achievement: Contributing to Docker MCP Ecosystem
The Journey: During the Docker MCP Registry contribution process, we enhanced the ArXiv MCP Server with production-ready Docker deployment capabilities and comprehensive tooling.
Our Contributions:
- Production Docker Configuration: Proper volume mounting and environment variable handling
- Comprehensive Documentation: Guides helping the entire MCP community
- Ecosystem Impact: Solutions work with any LLM supporting MCP protocol
Community Impact: The ArXiv MCP Server is now available to thousands of researchers, academics, and developers worldwide through Docker's official registry, enabling seamless academic research workflows.
Real-World Success: Successfully tested with papers including:
- FR3E Framework (ByteDance): Entropy-based exploration for LLM reasoning
- Cognitive Networks: DQN optimization for energy harvesting systems
💡 Available Tools
The server provides four main tools:
1. Paper Search
Search for papers with optional filters:
result = await call_tool("search_papers", {
"query": "transformer architecture",
"max_results": 10,
"date_from": "2023-01-01",
"categories": ["cs.AI", "cs.LG"]
})
2. Paper Download
Download a paper by its arXiv ID:
result = await call_tool("download_paper", {
"paper_id": "2401.12345"
})
3. List Papers
View all downloaded papers:
result = await call_tool("list_papers", {})
4. Read Paper
Access the content of a downloaded paper:
result = await call_tool("read_paper", {
"paper_id": "2401.12345"
})
📝 Research Prompts
The server offers specialized prompts to help analyze academic papers:
Paper Analysis Prompt
A comprehensive workflow for analyzing academic papers that only requires a paper ID:
result = await call_prompt("deep-paper-analysis", {
"paper_id": "2401.12345"
})
This prompt includes:
- Detailed instructions for using available tools (list_papers, download_paper, read_paper, search_papers)
- A systematic workflow for paper analysis
- Comprehensive analysis structure covering:
- Executive summary
- Research context
- Methodology analysis
- Results evaluation
- Practical and theoretical implications
- Future research directions
- Broader impacts
⚙️ Configuration
Configure through environment variables:
| Variable | Purpose | Default |
|---|---|---|
ARXIV_STORAGE_PATH | Paper storage location | ~/.arxiv-mcp-server/papers |
🧪 Testing
Run the test suite:
python -m pytest
📄 License
Released under the MIT License. See the LICENSE file for details.