# arXiv MCP Server — Search and Analyze Papers > arxiv-mcp-server is an MCP server for searching and analyzing arXiv papers, with uvx/uv tool stdio launch examples for reproducible research workflows. ## Install Merge the JSON below into your `.mcp.json`: ## Quick Use 1. Install using uv tools (README warns to use `uv tool install`): ```bash uv tool install arxiv-mcp-server arxiv-mcp-server --help ``` 2. Add MCP config (stdio example from README): ```json { "mcpServers": { "arxiv": { "command": "uvx", "args": ["arxiv-mcp-server"] } } } ``` 3. Ask your agent to search arXiv and summarize a shortlist. ## Intro arxiv-mcp-server is an MCP server for searching and analyzing arXiv papers, with uvx/uv tool stdio launch examples for reproducible research workflows. - **Best for:** research-heavy engineering teams who want agents to discover papers and keep a reproducible reading pipeline - **Works with:** uv/uvx, MCP stdio client configs (README also mentions plugin manifests and portable .mcp.json), local paper storage path - **Setup time:** 10–20 minutes ## Practical Notes - README provides multiple install paths (uv tool install, Smithery, release artifacts) and documents `--storage-path` with a default papers directory. - README includes stdio config snippets for uvx/uv tool run and mentions a portable `.mcp.json` for discovery. ## Make Paper Search Reproducible To avoid “I can’t find that paper again”: - Always store the exact query terms and filters in your notes (arXiv categories, date ranges). - Keep a dedicated `--storage-path` for PDFs/metadata so summaries and citations can link back to stored artifacts. - Ask the agent to output a structured shortlist: title, authors, arXiv ID, published date, 3–5 key claims, and your “why it matters” note. ## Suggested Agent Prompt Pattern “Search arXiv for X, filter to the last N years, then give me 5 papers with arXiv IDs and a one-paragraph summary each. End with a reading order.” ### FAQ **Q: Why not `uv pip install`?** A: The README warns `uv pip install` may not put the executable on PATH; it recommends `uv tool install`. **Q: Can I customize storage?** A: Yes—README documents `--storage-path` and a default papers directory. **Q: Is there a standard client config?** A: Yes—README includes `mcpServers` JSON snippets for stdio launch via uvx/uv tool. ## Source & Thanks > Source: https://github.com/blazickjp/arxiv-mcp-server > License: Apache-2.0 > GitHub stars: 2,693 · forks: 215 --- ## 快速使用 1. 用 uv 安装(README 提醒要用 `uv tool install`): ```bash uv tool install arxiv-mcp-server arxiv-mcp-server --help ``` 2. 添加 MCP 配置(README 的 stdio 示例): ```json { "mcpServers": { "arxiv": { "command": "uvx", "args": ["arxiv-mcp-server"] } } } ``` 3. 让 Agent 搜索 arXiv 并输出候选论文列表与摘要。 ## 简介 arxiv-mcp-server 是用于搜索与分析 arXiv 论文的 MCP server:README 提供 uvx/uv tool 的 stdio 启动方式与配置片段,让 Agent 能把“找论文—读论文—整理”变成工具化流程。 - **适合谁:** 研究型工程团队:希望 Agent 自动找论文,并把阅读/整理流程可复现 - **可搭配:** uv/uvx、MCP stdio 客户端配置(README 提到插件清单与可移植 .mcp.json)、本地论文存储目录 - **准备时间:** 10–20 分钟 ## 实战建议 - README 提供多种安装路径(uv tool、Smithery、release artifacts),并说明 `--storage-path` 与默认存储目录。 - README 给出 uvx/uv tool 的 stdio 配置片段,并提到可用 `.mcp.json` 便于发现与复用。 ## 让“找论文”可复现 避免“上次那篇找不到了”,建议: - 在笔记里记录精确查询条件(关键词、类别、时间范围)。 - 为 PDF/元数据指定固定 `--storage-path`,让摘要与引用能回链到本地存档。 - 让 Agent 输出结构化 shortlist:标题、作者、arXiv ID、发布日期、3–5 个关键结论、以及“为什么重要”。 ## 推荐提问模板 “在 arXiv 搜索 X,限定最近 N 年,给我 5 篇论文:包含 arXiv ID + 一段摘要,并按阅读顺序排序。” ### FAQ **为什么不推荐 `uv pip install`?** 答:README 提醒 `uv pip install` 可能不会把可执行文件放到 PATH;建议用 `uv tool install`。 **存储目录能自定义吗?** 答:可以。README 说明了 `--storage-path` 与默认 papers 目录。 **有标准的客户端配置吗?** 答:有。README 提供 `mcpServers` JSON 片段,用 uvx/uv tool 以 stdio 启动。 ## 来源与感谢 > Source: https://github.com/blazickjp/arxiv-mcp-server > License: Apache-2.0 > GitHub stars: 2,693 · forks: 215 --- Source: https://tokrepo.com/en/workflows/arxiv-mcp-server-search-and-analyze-papers Author: MCP Hub