Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
neolabhq avatar

Setup Arxiv Mcp

  • 845 installs
  • 1.3k repo stars
  • Updated July 26, 2026
  • neolabhq/context-engineering-kit

setup-arxiv-mcp is a Claude Code skill that walks through configuring the arXiv paper search MCP server via Docker MCP with project-level or personal CLAUDE.md configuration options.

About

setup-arxiv-mcp is a Claude Code skill from neolabhq/context-engineering-kit for deploying the arXiv paper search MCP server using Docker MCP. The guide first asks whether configuration should live in git-tracked ./CLAUDE.md for shared project setup or ./CLAUDE.local.md for personal preferences, and verifies ignore rules accordingly. Developers reach for setup-arxiv-mcp when they want agents to query arXiv papers without manually crafting MCP JSON or Docker commands each time. Optional argument hints allow narrowing research topics or paper sources during setup. The skill is a setup walkthrough, not a paper summarization or citation formatter. It pairs with broader context-engineering workflows where literature search feeds hypothesis work inside agent sessions.

  • Interactive 3-path configuration (project-shared, project-local, or user-global)
  • Automatically updates the correct CLAUDE.md or CLAUDE.local.md file
  • Verifies and guides Docker Desktop + MCP setup when missing
  • Searches and adds arXiv paper search MCP server via mcp-find
  • Resumable workflow that respects .gitignore for local preference files

Setup Arxiv Mcp by the numbers

  • 845 all-time installs (skills.sh)
  • +47 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #1,241 of 16,659 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/neolabhq/context-engineering-kit --skill setup-arxiv-mcp

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs845
repo stars1.3k
Security audit2 / 3 scanners passed
Last updatedJuly 26, 2026
Repositoryneolabhq/context-engineering-kit

How do you set up arXiv MCP in Claude Code?

Quickly configure the arXiv paper search MCP server inside Claude Code using Docker.

Who is it for?

Developers adding arXiv literature search to Claude Code who want guided Docker MCP setup with team-shared or personal config placement.

Skip if: Teams not using Docker MCP, or researchers who only need occasional manual arXiv browsing without agent integration.

When should I use this skill?

A user asks to install, configure, or enable arXiv paper search MCP inside Claude Code via Docker.

What you get

Docker MCP arXiv server configuration written to CLAUDE.md or CLAUDE.local.md with verified ignore rules.

  • MCP server configuration
  • Updated CLAUDE.md or CLAUDE.local.md

Files

SKILL.mdMarkdownGitHub ↗

User Input:

$ARGUMENTS

Guide for setup arXiv MCP server via Docker MCP

1. Determine setup context

Ask the user where they want to store the configuration:

Options:

1. Project level (shared via git) - Configuration tracked in version control, shared with team

  • CLAUDE.md updates go to: ./CLAUDE.md

2. Project level (personal preferences) - Configuration stays local, not tracked in git

  • CLAUDE.md updates go to: ./CLAUDE.local.md
  • Verify these files are listed in .gitignore, add them if not

3. User level (global) - Configuration applies to all projects for this user

  • CLAUDE.md updates go to: ~/.claude/CLAUDE.md

Store the user's choice and use the appropriate paths in subsequent steps.

2. Check if Docker MCP is available

First, verify that Docker MCP (MCP_DOCKER) is accessible by attempting to use mcp-find tool to search for servers.

If Docker MCP is NOT available:

1. Ask user to install Docker Desktop following instructions at: <https://docs.docker.com/desktop/> 2. After Docker Desktop is installed, guide user to connect MCP using: <https://docs.docker.com/ai/mcp-catalog-and-toolkit/get-started/#claude-code> 3. Once configured, ask user to restart Claude Code and run "continue" to resume setup

3. Search and add paper-search MCP server

Write to user that regular arxiv-mcp-server is known to have issues, specifically is failing to initialize (EOF error during init). So we will use paper-search MCP server instead.

Use Docker MCP to find and add the paper-search MCP server which provides comprehensive academic paper search capabilities:

mcp-find query: "paper-search"
mcp-add name: "paper-search" activate: true

This server provides access to multiple academic sources:

  • arXiv - preprints in physics, mathematics, computer science, etc.
  • PubMed - biomedical literature
  • bioRxiv/medRxiv - biology and medicine preprints
  • Semantic Scholar - AI-powered research tool
  • Google Scholar - broad academic search
  • IACR - cryptography research
  • CrossRef - DOI-based citation database

4. Test the setup

Verify the server is working by searching for papers:

mcp-exec name: "search_arxiv" arguments: {"query": "test query", "max_results": 2}

5. Update CLAUDE.md file

Use the path determined in step 1:

Once the paper-search MCP server is successfully set up, update CLAUDE.md file with the following content:

### Use Paper Search MCP for Academic Research

Paper Search MCP is available via Docker MCP for searching and downloading academic papers.

**Available tools**:

- `search_arxiv` - Search arXiv preprints (physics, math, CS, etc.)
- `search_pubmed` - Search PubMed biomedical literature
- `search_biorxiv` / `search_medrxiv` - Search biology/medicine preprints
- `search_semantic` - Search Semantic Scholar with year filters
- `search_google_scholar` - Broad academic search
- `search_iacr` - Search cryptography papers
- `search_crossref` - Search by DOI/citation

**Download and read tools**:

- `download_arxiv` / `read_arxiv_paper` - Download/read arXiv PDFs
- `download_biorxiv` / `read_biorxiv_paper` - Download/read bioRxiv PDFs
- `download_semantic` / `read_semantic_paper` - Download/read via Semantic Scholar

**Usage notes**:

- Use `mcp-exec` to call tools, e.g., `mcp-exec name: "search_arxiv" arguments: {"query": "topic", "max_results": 10}`
- Downloaded papers are saved to `./downloads` by default
- For Semantic Scholar, supports multiple ID formats: DOI, ARXIV, PMID, etc.

6. Alternative: arxiv-mcp-server

If you specifically need the dedicated arXiv MCP server with additional features (deep analysis prompts, local storage management), you can try:

mcp-find query: "arxiv"
mcp-config-set server: "arxiv-mcp-server" key: "storage_path" value: "/path/to/papers"
mcp-add name: "arxiv-mcp-server" activate: true

Note: This server requires configuration of a storage path for downloaded papers.

Related skills

FAQ

Where does setup-arxiv-mcp write Claude Code configuration?

setup-arxiv-mcp offers project-level git-tracked ./CLAUDE.md for shared team config or ./CLAUDE.local.md for personal setup, and checks that local files are properly ignored from version control.

What does setup-arxiv-mcp install?

setup-arxiv-mcp configures the arXiv paper search MCP server via Docker MCP so Claude Code agents can query arXiv literature through MCP tools instead of manual browser search.

Is Setup Arxiv Mcp safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.