com um clique
mcp-arxiv
arXiv 论文搜索、下载、元数据查询工具。支持自然语言搜索、关键词检索、论文下载等功能,为AI助手提供学术文献获取能力。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
arXiv 论文搜索、下载、元数据查询工具。支持自然语言搜索、关键词检索、论文下载等功能,为AI助手提供学术文献获取能力。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Word文档处理:创建、编辑、读取.docx文件。用户提到"Word"、"文档"、".docx"、"报告"、"信函"时使用。
使用腾讯云 API 密钥调用腾讯云各种服务,包括翻译、CVM、COS等。
图片识别与图文理解,基于 PaddleOCR-VL 模型,支持识别图片中的文字、场景、物体等信息。支持109种语言,可输出JSON或Markdown格式。
You MUST use this for gathering contexts before any work. This is a Knowledge management for AI agents. Use `brv` to store and retrieve project patterns, decisions, and architectural rules in .brv/context-tree. Uses a configured LLM provider (default: ByteRover, no API key needed) for query and curate operations.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Now with WAL Protocol, Working Buffer, Autonomous Crons, and battle-tested patterns. Part of the Hal Stack 🦞
| name | MCP arXiv 论文 |
| description | arXiv 论文搜索、下载、元数据查询工具。支持自然语言搜索、关键词检索、论文下载等功能,为AI助手提供学术文献获取能力。 |
| triggers | ["论文搜索","arxiv","学术文献","下载论文","学术论文","研究论文"] |
| mcp | {"command":"uvx","args":["arxiv-mcp-server"]} |
arXiv MCP Server 提供 arXiv 学术论文的搜索和获取功能:
功能:搜索 arXiv 论文
参数说明:
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| query | string | ✅ | 搜索关键词或自然语言描述 |
| max_results | integer | ❌ | 最大返回数量,默认 10 |
| sort_by | string | ❌ | 排序方式(relevance/date) |
使用示例:
{
"query": "CRISPR gene editing",
"max_results": 5,
"sort_by": "date"
}
功能:下载指定论文的 PDF
参数:
arxiv_id: 论文的 arXiv IDsave_path: 保存路径(可选)返回:下载成功的文件路径
功能:获取论文的详细元数据
参数:
arxiv_id: 论文的 arXiv ID返回字段:
{
"mcpServers": {
"arxiv": {
"command": "npx",
"args": ["-y", "arxiv-mcp-server"]
}
}
}
uv tool install arxiv-mcp-server
npx -y @smithery/cli install arxiv-mcp-server --client claude
用户:帮我找几篇关于 CRISPR 的最新论文
助手:[调用 search_papers 搜索]
用户:下载这篇论文 2301.00001
助手:[调用 download_paper 下载 PDF]
用户:这篇论文讲什么?arXiv ID 是 2201.12345
助手:[调用 get_paper_info 获取摘要]
通过环境变量配置:
{
"mcpServers": {
"arxiv": {
"command": "npx",
"args": ["-y", "arxiv-mcp-server"],
"env": {
"ARXIV_STORAGE_PATH": "/path/to/papers"
}
}
}
}
默认路径:~/.arxiv-mcp-server/papers
papers/
├── 2301.00001.pdf
├── 2301.00002.pdf
└── metadata/
├── 2301.00001.json
└── 2301.00002.json
# 使用具体的关键词
search_papers("transformer attention mechanism")
# 使用作者名 + 主题
search_papers("Bengio deep learning")
# 先搜索获取 ID 列表
papers = search_papers("quantum computing", max_results=10)
# 批量下载
for paper in papers:
download_paper(paper.arxiv_id)
下载 → 阅读 → 归档 → 删除
⚠️ 重要提示:
arxiv(搜索论文) → biomcp(查询基因/变异) → 总结分析
arxiv → metaso(研究模式) → 整理笔记
| 来源 | 说明 |
|---|---|
| arXiv | 主要支持 |
| PubMed | 部分支持 |
| bioRxiv | 部分支持 |
| Sci-Hub | 可选支持 |
A: 格式为 YYMM.NNNNN,例如:2301.00001
A: 主要支持英文论文,建议使用英文关键词
A: 默认在 ~/.arxiv-mcp-server/papers,可通过环境变量修改
更新时间: 2026-03-08 版本: 1.0 适用对象: 学术研究者、学生