🔌 MCP Servers

ArXiv Scout

Search and retrieve academic papers directly from arXiv with advanced query capabilities. Extract full text from PDFs to generate summaries, literature reviews, and side-by-side comparisons. Track cit

❤️ 0
⬇️ 702
👁 2
Share

Description

arXiv Scout

smithery badge

A Model Context Protocol server for searching, retrieving, and analyzing papers from arXiv.org with citation data from Semantic Scholar.

No API key required.

Tools

Tool Description
arxiv_search_papers Search with full query syntax, semantic categories, date filtering, pagination
arxiv_get_paper Get metadata by arXiv ID or URL
arxiv_get_papers_batch Fetch up to 20 papers in one call
arxiv_download_and_extract PDF → text with section detection, header stripping, page ranges
arxiv_get_references Outbound references via Semantic Scholar (PDF fallback)
arxiv_get_citations Inbound citations via Semantic Scholar
arxiv_list_categories Browse taxonomy with semantic lookup ("machine learning"cs.LG)
arxiv_cache_stats Cache hit rates and sizes

Prompts

Prompt Description
summarize_paper Guided structured summary (problem, methods, results, limitations)
compare_papers Side-by-side comparison of 2–5 papers
literature_review Search a topic and synthesize a review

Resources

URI Description
arxiv://categories Complete arXiv category taxonomy
arxiv://help/query-syntax Query syntax reference
arxiv://server/info Server capabilities

Installation

Smithery (hosted)

No local installation needed:

npx -y @smithery/cli@latest run @shawnnygoh/arxiv-scout

Local

uv pip install arxiv-scout

Or from source:

git clone https://github.com/shawnnygoh/arxiv-scout.git
cd arxiv-scout
uv sync

Usage

Claude Desktop

{
  "mcpServers": {
    "arxiv": {
      "command": "uvx",
      "args": ["arxiv-scout"]
    }
  }
}

VS Code

{
  "servers": {
    "arxiv": {
      "command": "uvx",
      "args": ["arxiv-scout"]
    }
  }
}

Cursor

{
  "mcpServers": {
    "arxiv": {
      "url": "https://server.smithery.ai/@shawnnygoh/arxiv-scout/mcp"
    }
  }
}

Claude Code

# Manual installation
claude mcp add --transport http arxiv https://server.smithery.ai/@shawnnygoh/arxiv-scout/mcp

# Using Smithery CLI
npx -y @smithery/cli@latest mcp add shawnnygoh/arxiv-scout --client claude-code

Configuration

Variable Default Description
PORT 8000 Server port
HOST 0.0.0.0 Bind address
SEMANTIC_SCHOLAR_API_KEY (none) Optional — higher S2 rate limits

Development

git clone https://github.com/shawnnygoh/arxiv-scout.git
cd arxiv-scout
uv sync --dev

# Unit tests (no network)
uv run pytest

# Include integration tests (hits real APIs)
uv run pytest -m integration

# Test with MCP Inspector
uv run arxiv-scout &
npx @modelcontextprotocol/inspector
# Transport: Streamable HTTP → http://localhost:8000/mcp

License

MIT

Reviews (0)

Sign in to write a review.

No reviews yet. Be the first to review!

Comments (0)

Sign in to join the discussion.

No comments yet. Be the first to share your thoughts!

Related Configs