Sign inSign up

screenager/arxiv-mcp

By screenager

โ€ขUpdated 12 months ago

A streamlined Model Context Protocol for arxiv.org

Image
Machine learning & AI
0

353

screenager/arxiv-mcp repository overview

โ  arXiv MCP Server

Python MCP Compatible arXiv API License Code Quality CI/CD Docker

Access the world's largest repository of academic papers through the Model Context Protocol

A streamlined Model Context Protocolโ  server that connects AI assistants to arXiv's vast collection of academic papers. Search, analyze, and download research papers directly from your AI workflow.

โ ๐Ÿš€ Quick Start

โ Prerequisites
โ Installation
# Pull and run the Docker image
docker run --rm -it ghcr.io/tejas242/arxiv-mcp:latest

# Or using docker-compose
git clone https://github.com/tejas242/arxiv-mcp.git
cd arxiv-mcp
docker compose up
โ Option 2: Local Development
# Clone and setup
git clone https://github.com/tejas242/arxiv-mcp.git
cd arxiv-mcp
uv sync

# Test the server
uv run main.py

โ ๐Ÿ› ๏ธ Available Functions

FunctionStatusDescriptionParameters
search_papersโœ… WorkingSearch arXiv papers with flexible query syntaxquery, max_results, sort_by, sort_order
get_paper_detailsโœ… WorkingRetrieve complete metadata for any arXiv paperarxiv_id
build_advanced_queryโœ… WorkingConstruct complex search queries with multiple fieldstitle_keywords, author_name, category, abstract_keywords
get_arxiv_categoriesโœ… WorkingList all available arXiv subject categoriesNone
search_by_authorโš ๏ธ LimitedFind papers by specific author (use search_papers instead)author_name, max_results
search_by_categoryโš ๏ธ LimitedBrowse papers by category (use search_papers instead)category, max_results
download_paper_pdf๐Ÿ”ง Needs FixDownload paper PDFs (redirect handling issue)arxiv_id, save_path
โ Function Details
โ โœ… Fully Working Functions

search_papers - The primary search function

  • Supports full arXiv query syntax
  • Handles keywords, authors, categories, titles
  • Configurable sorting and pagination
  • Returns formatted results with abstracts and links

get_paper_details - Detailed paper information

  • Complete metadata extraction
  • Author information with affiliations
  • Category classifications and links
  • Publication dates and updates

build_advanced_query - Query construction helper

  • Combines multiple search criteria
  • Supports title, author, category, and abstract searches
  • Returns properly formatted query strings

get_arxiv_categories - Category reference

  • Complete list of arXiv subject categories
  • Descriptions for each category
  • Helpful for constructing targeted searches
โ โš ๏ธ Limited Functions (Workarounds Available)

search_by_author - Use search_papers('au:"Author Name"') instead search_by_category - Use search_papers('cat:category_code') instead

โ ๐Ÿ”ง Functions Needing Fixes

download_paper_pdf - HTTP redirect handling needs improvement

  • Currently fails due to HTTPS/HTTP redirect issues
  • PDFs can be accessed directly via the links provided in search results

โ โš™๏ธ Configuration

โ Claude Desktop Setup
Configuration Instructions

For Local Installation:

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "arxiv-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/arxiv-mcp",
        "run",
        "main.py"
      ]
    }
  }
}

For Docker Installation:

{
  "mcpServers": {
    "arxiv-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/tejas242/arxiv-mcp:latest"
      ]
    }
  }
}
โ VS Code MCP Extension
VS Code Configuration
{
  "mcp": {
    "servers": {
      "arxiv-mcp": {
        "command": "uv",
        "args": ["--directory", "/path/to/arxiv-mcp", "run", "main.py"]
      }
    }
  }
}

โ ๐Ÿ’ก Usage Examples

โ Core Search Operations
# Search for papers about transformers
search_papers("transformer architecture")

# Advanced query with specific fields
search_papers('ti:"attention mechanism" AND cat:cs.LG')

# Author-specific search (recommended approach)
search_papers('au:"Geoffrey Hinton"')

# Category browsing (recommended approach)
search_papers('cat:cs.AI')
โ Research Workflow
# 1. Find the famous "Attention" paper
search_papers('ti:"Attention Is All You Need"')
get_paper_details("1706.03762")

# 2. Explore related work
search_papers("transformer neural networks")

# 3. Build complex queries
query = build_advanced_query(
    title_keywords="few-shot learning",
    author_name="Tom Brown",
    category="cs.LG"
)
search_papers(query)

โ ๐Ÿ“Š arXiv Categories Reference

Popular Categories
CodeDescriptionExample Topics
cs.AIArtificial IntelligenceMachine learning, neural networks, AI theory
cs.LGMachine LearningDeep learning, reinforcement learning, statistical learning
cs.CVComputer VisionImage processing, object detection, visual recognition
cs.CLComputation and LanguageNLP, language models, text processing
cs.CRCryptography and SecuritySecurity protocols, encryption, privacy
stat.MLMachine Learning (Statistics)Statistical learning theory, Bayesian methods
physics.gen-phGeneral PhysicsTheoretical physics, quantum mechanics
math.NANumerical AnalysisComputational mathematics, algorithms
q-bio.NCQuantitative BiologyNeuroscience, computational biology

Use get_arxiv_categories() for the complete list of available categories.

โ ๐Ÿงช Testing Results

Based on comprehensive testing of all functions:

Working Functions Limited Functions Needs Fix

โ โœ… Reliable Functions
  • Paper search with keywords, authors, categories: 100% success rate
  • Paper detail retrieval: Complete metadata extraction working
  • Query construction: All syntax combinations supported
  • Category listing: All arXiv categories accessible
  • Author search: Use search_papers('au:"Author Name"') instead of search_by_author()
  • Category browsing: Use search_papers('cat:category') instead of search_by_category()
โ ๐Ÿ”ง Known Issues
  • PDF downloads: Redirect handling needs improvement (PDFs accessible via direct links)

โ ๐Ÿ”ง Development

โ Project Structure
arxiv-mcp/
โ”œโ”€โ”€ src/arxiv_mcp/          # Main package
โ”‚   โ”œโ”€โ”€ server.py           # MCP server implementation
โ”‚   โ”œโ”€โ”€ arxiv_client.py     # arXiv API wrapper
โ”‚   โ”œโ”€โ”€ models.py           # Pydantic data models
โ”‚   โ””โ”€โ”€ utils.py            # Helper functions
โ”œโ”€โ”€ tests/                  # Test suite
โ”œโ”€โ”€ main.py                 # Entry point
โ””โ”€โ”€ pyproject.toml         # Project config
โ Running Tests
uv run pytest tests/ -v
โ Debug Mode
# Enable detailed logging
PYTHONPATH=src uv run python -c "
import logging
logging.basicConfig(level=logging.DEBUG)
from arxiv_mcp.server import main
main()
"

โ โš ๏ธ Troubleshooting

Common Issues & Solutions
โ Server Not Detected
  • โœ… Verify absolute paths in MCP config
  • โœ… Test server runs: uv run main.py
  • โœ… Restart Claude Desktop after config changes
โ Search Issues
  • โœ… Use arXiv query syntax (see examples above)
  • โœ… Check category names: get_arxiv_categories()
  • โœ… Try broader search terms
  • โœ… Use search_papers() instead of specific search functions
โ PDF Download Failures
  • โœ… Access PDFs via links in search results
  • โœ… Check internet connection
  • โœ… Verify arXiv ID format (e.g., "1706.03762")

โ ๐Ÿ™ Acknowledgments


GitHub Issues Contribute



Made with โšก by screenager

Tag summary

Content type

Image

Digest

sha256:256f8ace3โ€ฆ

Size

74 MB

Last updated

12 months ago

docker pull screenager/arxiv-mcp