mcp:setup-arxiv-mcp
Guide for setup arXiv paper search MCP server using Docker MCP
Best use case
mcp:setup-arxiv-mcp is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Guide for setup arXiv paper search MCP server using Docker MCP
Teams using mcp:setup-arxiv-mcp should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/setup-arxiv-mcp/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How mcp:setup-arxiv-mcp Compares
| Feature / Agent | mcp:setup-arxiv-mcp | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Guide for setup arXiv paper search MCP server using Docker MCP
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
User Input:
```text
$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:
```markdown
### 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
expo-tailwind-setup
Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling
mcp:setup-codemap-cli
Guide for setup Codemap CLI for intelligent codebase visualization and navigation
ab-test-setup
Structured guide for setting up A/B tests with mandatory gates for hypothesis, metrics, and execution readiness.
ci-setup
Generates a CI/CD pipeline (GitHub Actions) tailored to the project's tech stack. Detects language, framework, test runner, and linter, then produces a production-ready workflow with caching, matrix testing, and security best practices.
observability-monitoring-monitor-setup
You are a monitoring and observability expert specializing in implementing comprehensive monitoring solutions. Set up metrics collection, distributed tracing, log aggregation, and create insightful da
conductor-setup
Initialize project with Conductor artifacts (product definition, tech stack, workflow, style guides)
environment-setup-guide
Guide developers through setting up development environments with proper tools, dependencies, and configurations
ddd:setup-code-formating
Sets up code formatting rules and style guidelines in CLAUDE.md
mcp:setup-serena-mcp
Guide for setup Serena MCP server for semantic code retrieval and editing capabilities
mcp:setup-context7-mcp
Guide for setup Context7 MCP server to load documentation for specific technologies.
devcontainer-setup
Creates devcontainers with Claude Code, language-specific tooling (Python/Node/Rust/Go), and persistent volumes. Use when adding devcontainer support to a project, setting up isolated development environments, or configuring sandboxed Claude Code workspaces.
writing-skills
Use when creating new skills, editing existing skills, or verifying skills work before deployment