mcp-简单-arxiv
MCP 服务器通过其 API 提供对 arXiv 论文的访问。
特征
该服务器允许 LLM 客户端(如 Claude Desktop)执行以下操作:
按标题和摘要内容搜索 arXiv 上的科学论文
获取论文元数据和摘要
访问可用论文格式的链接(PDF/HTML)
服务器根据 arXiv 的 API 指南实施适当的速率限制(每 3 秒最多 1 个请求)。
Related MCP server: bioRxiv-MCP-Server
安装
通过 Smithery 安装
要通过Smithery自动为 Claude Desktop 安装 Simple Arxiv:
npx -y @smithery/cli install mcp-simple-arxiv --client claude手动安装
pip install mcp-simple-arxiv与 Claude Desktop 一起使用
将此配置添加到您的claude_desktop_config.json :
(Mac 操作系统)
{
"mcpServers": {
"simple-arxiv": {
"command": "python",
"args": ["-m", "mcp_simple_arxiv"]
}
}
}(Windows 版本):
{
"mcpServers": {
"simple-arxiv": {
"command": "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
"args": [
"-m",
"mcp_simple_arxiv"
]
}
}
}重新启动 Claude Desktop 后,将可以使用以下功能:
搜索论文
您可以要求 Claude 使用以下查询来搜索论文:
Can you search arXiv for recent papers about large language models?搜索将返回匹配论文的基本信息,包括:
论文标题
作者
arXiv ID
出版日期
获取论文详细信息
获得纸质身份证后,您可以询问更多详细信息:
Can you show me the details for paper 2103.08220?这将返回:
全文标题
作者
出版和更新日期
期刊参考文献(如有)
论文摘要
可用格式的链接(PDF/HTML)
发展
为开发而安装:
git clone https://github.com/andybrandt/mcp-simple-arxiv
cd mcp-simple-arxiv
pip install -e .arXiv API 指南
该服务器遵循 arXiv API 使用指南:
限制每 3 秒最多 1 个请求
一次一个连接
正确的错误处理和重试逻辑
执照
麻省理工学院
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.