$npx -y skills add NeoLabHQ/context-engineering-kit --skill setup-arxiv-mcpGuide for setup arXiv paper search MCP server using Docker MCP
| 1 | User Input: |
| 2 | |
| 3 | ```text |
| 4 | $ARGUMENTS |
| 5 | ``` |
| 6 | |
| 7 | # Guide for setup arXiv MCP server via Docker MCP |
| 8 | |
| 9 | ## 1. Determine setup context |
| 10 | |
| 11 | Ask the user where they want to store the configuration: |
| 12 | |
| 13 | **Options:** |
| 14 | |
| 15 | 1. **Project level (shared via git)** - Configuration tracked in version control, shared with team |
| 16 | - CLAUDE.md updates go to: `./CLAUDE.md` |
| 17 | |
| 18 | 2. **Project level (personal preferences)** - Configuration stays local, not tracked in git |
| 19 | - CLAUDE.md updates go to: `./CLAUDE.local.md` |
| 20 | - Verify these files are listed in `.gitignore`, add them if not |
| 21 | |
| 22 | 3. **User level (global)** - Configuration applies to all projects for this user |
| 23 | - CLAUDE.md updates go to: `~/.claude/CLAUDE.md` |
| 24 | |
| 25 | Store the user's choice and use the appropriate paths in subsequent steps. |
| 26 | |
| 27 | ## 2. Check if Docker MCP is available |
| 28 | |
| 29 | First, verify that Docker MCP (MCP_DOCKER) is accessible by attempting to use `mcp-find` tool to search for servers. |
| 30 | |
| 31 | If Docker MCP is NOT available: |
| 32 | |
| 33 | 1. Ask user to install Docker Desktop following instructions at: <https://docs.docker.com/desktop/> |
| 34 | 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> |
| 35 | 3. Once configured, ask user to restart Claude Code and run "continue" to resume setup |
| 36 | |
| 37 | ## 3. Search and add paper-search MCP server |
| 38 | |
| 39 | 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. |
| 40 | |
| 41 | Use Docker MCP to find and add the `paper-search` MCP server which provides comprehensive academic paper search capabilities: |
| 42 | |
| 43 | ``` |
| 44 | mcp-find query: "paper-search" |
| 45 | mcp-add name: "paper-search" activate: true |
| 46 | ``` |
| 47 | |
| 48 | This server provides access to multiple academic sources: |
| 49 | |
| 50 | - **arXiv** - preprints in physics, mathematics, computer science, etc. |
| 51 | - **PubMed** - biomedical literature |
| 52 | - **bioRxiv/medRxiv** - biology and medicine preprints |
| 53 | - **Semantic Scholar** - AI-powered research tool |
| 54 | - **Google Scholar** - broad academic search |
| 55 | - **IACR** - cryptography research |
| 56 | - **CrossRef** - DOI-based citation database |
| 57 | |
| 58 | ## 4. Test the setup |
| 59 | |
| 60 | Verify the server is working by searching for papers: |
| 61 | |
| 62 | ``` |
| 63 | mcp-exec name: "search_arxiv" arguments: {"query": "test query", "max_results": 2} |
| 64 | ``` |
| 65 | |
| 66 | ## 5. Update CLAUDE.md file |
| 67 | |
| 68 | Use the path determined in step 1: |
| 69 | |
| 70 | Once the paper-search MCP server is successfully set up, update CLAUDE.md file with the following content: |
| 71 | |
| 72 | ```markdown |
| 73 | ### Use Paper Search MCP for Academic Research |
| 74 | |
| 75 | Paper Search MCP is available via Docker MCP for searching and downloading academic papers. |
| 76 | |
| 77 | **Available tools**: |
| 78 | |
| 79 | - `search_arxiv` - Search arXiv preprints (physics, math, CS, etc.) |
| 80 | - `search_pubmed` - Search PubMed biomedical literature |
| 81 | - `search_biorxiv` / `search_medrxiv` - Search biology/medicine preprints |
| 82 | - `search_semantic` - Search Semantic Scholar with year filters |
| 83 | - `search_google_scholar` - Broad academic search |
| 84 | - `search_iacr` - Search cryptography papers |
| 85 | - `search_crossref` - Search by DOI/citation |
| 86 | |
| 87 | **Download and read tools**: |
| 88 | |
| 89 | - `download_arxiv` / `read_arxiv_paper` - Download/read arXiv PDFs |
| 90 | - `download_biorxiv` / `read_biorxiv_paper` - Download/read bioRxiv PDFs |
| 91 | - `download_semantic` / `read_semantic_paper` - Download/read via Semantic Scholar |
| 92 | |
| 93 | **Usage notes**: |
| 94 | |
| 95 | - Use `mcp-exec` to call tools, e.g., `mcp-exec name: "search_arxiv" arguments: {"query": "topic", "max_results": 10}` |
| 96 | - Downloaded papers are saved to `./downloads` by default |
| 97 | - For Semantic Scholar, supports multiple ID formats: DOI, ARXIV, PMID, etc. |
| 98 | ``` |
| 99 | |
| 100 | ## 6. Alternative: arxiv-mcp-server |
| 101 | |
| 102 | If you specifically need the dedicated arXiv MCP server with additional features (deep analysis prompts, local storage management), you can try: |
| 103 | |
| 104 | ``` |
| 105 | mcp-find query: "arxiv" |
| 106 | mcp-config-set server: "arxiv-mcp-server" key: "storage_path" value: "/path/to/papers" |
| 107 | mcp-add name: "arxiv-mcp-server" activate: true |
| 108 | ``` |
| 109 | |
| 110 | Note: This server requires configuration of a storage path for downloaded papers. |