Token导航 LogoToken导航TokenDH.com
Arxiv Research MCP logo
搜索检索stdio官方级别未说明来源级核验

Arxiv Research MCP

MCP Server

一个全面的模型上下文协议(MCP)服务器,用于通过AI驱动的相关性排序和全文提取搜索和分析arXiv的学术论文。

工具数

4

提示词数

0

GitHub Stars

0

资源数

0
搜索PythonClaudeClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

borderlessboy

提供方

borderlessboy

最后核验

2026/5/17 20:19

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

pip install -r requirements.txt

详细介绍

arXiv研究MCP服务器

一个全面的模型上下文协议(MCP)服务器,用于搜索和分析arXiv的学术论文,具有AI支持的相关性排名和全文提取功能。

特性

  • 智能搜索:使用日期过滤和相关性排名搜索arXiv
  • 全文提取:下载并提取完整的论文内容
  • 缓存:智能缓存可减少API调用
  • 多重集成:与Claude、LangChain、Streamlit等合作
  • 批处理:高效处理多个研究课题
  • API包装:REST API,便于集成
  • Jupyter集成:交互式分析和可视化工具
  • 相关性排名:基于TF-IDF的排名,以获得更好的结果
  • PDF处理:从PDF中提取多方法文本

快速开始

安装

# Clone the repository
git clone https://github.com/borderlessboy/arxiv-research-mcp
cd arxiv-research-mcp

# Install dependencies
pip install -r requirements.txt

# Create environment configuration
# cp .env.example .env  # Create .env file with your configuration

基本用法

# Run the MCP server
python scripts/run_server.py

# Or use the Streamlit dashboard
streamlit run integrations/streamlit_app.py

Docker使用

该项目包括一个Dockerfile,便于容器化部署。

Docker快速入门

# Build the Docker image
docker build -t arxiv-research-mcp .

# Run the container
docker run -p 8090:8090 arxiv-research-mcp

自定义配置的Docker

# Build with custom tag
docker build -t arxiv-research-mcp:latest .

# Run with custom port mapping
docker run -p 8080:8090 arxiv-research-mcp

# Run with volume for persistent cache
docker run -p 8090:8090 -v $(pwd)/cache:/app/cache arxiv-research-mcp

# Run with environment variables
docker run -p 8090:8090 \
  -e CACHE_ENABLED=true \
  -e CACHE_TTL_HOURS=24 \
  -e LOG_LEVEL=INFO \
  arxiv-research-mcp

Docker Compose(推荐)

该项目包括 docker-compose.yml 文件以便于部署:

# Start the service
docker-compose up -d

# View logs
docker-compose logs -f

# Stop the service
docker-compose down

或创建自定义 docker-compose.yml:

services:
  arxiv-research-mcp:
    build: .
    ports:
      - "8090:8090"
    volumes:
      - ./cache:/app/cache
    environment:
      - CACHE_ENABLED=true
      - CACHE_TTL_HOURS=24
      - LOG_LEVEL=INFO
    restart: unless-stopped
# Start the service
docker-compose up -d

# View logs
docker-compose logs -f

# Stop the service
docker-compose down

Docker开发

# Build for development with all dependencies
docker build -t arxiv-research-mcp:dev .

# Run with mounted source code for development
docker run -p 8090:8090 \
  -v $(pwd)/src:/app/src \
  -v $(pwd)/config:/app/config \
  -v $(pwd)/cache:/app/cache \
  arxiv-research-mcp:dev

安装选项

Docker安装(推荐)

# Quick start with Docker
docker build -t arxiv-research-mcp .
docker run -p 8090:8090 arxiv-research-mcp

完整安装

pip install "arxiv-research-mcp[all]"

特定组件

# API server only
pip install "arxiv-research-mcp[api]"

# Jupyter integration
pip install "arxiv-research-mcp[jupyter]"

# Dashboard
pip install "arxiv-research-mcp[dashboard]"

# LangChain integration
pip install "arxiv-research-mcp[langchain]"

使用示例

1.基本MCP服务器使用

from src.server import search_arxiv_papers_tool

# Search for papers
result = await search_arxiv_papers_tool({
    "query": "transformer models",
    "max_results": 10,
    "years_back": 4,
    "include_full_text": True
})

2.LangChain集成

from integrations.langchain_tool import ResearchAgent

agent = ResearchAgent()
result = agent.research_topic("quantum machine learning")

3.Jupyter分析

from integrations.jupyter_helper import search_papers

# Search and analyze
helper = await search_papers("machine learning", max_results=20)

# Create visualizations
fig = helper.create_publication_timeline()
plt.show()

4.流线型仪表板

streamlit run integrations/streamlit_app.py

配置

创建一个 .env 使用您的设置文件:

# Server Configuration
SERVER_NAME=arxiv-research-server
LOG_LEVEL=INFO

# arXiv API Configuration
ARXIV_REQUEST_TIMEOUT=30
ARXIV_MAX_RETRIES=3

# Caching
CACHE_ENABLED=true
CACHE_TTL_HOURS=24

# Content Processing
MAX_FULL_TEXT_LENGTH=50000
DEFAULT_MAX_RESULTS=10
DEFAULT_YEARS_BACK=4

api参考

MCP工具

search_arxiv_papers

搜索具有相关性排名的学术论文。

参数:

  • query (string):搜索查询
  • max_results (整数,默认值:10):要返回的最大纸张数
  • years_back (整数,默认值:4):要回溯的年份
  • include_full_text (布尔值,默认值:true):包含全文

clear_cache

清除所有缓存的搜索结果。

get_cache_stats

获取缓存统计数据和信息。

LangChain工具

ArxivResearchTool

使用LangChain集成搜索arXiv论文。

ArxivCacheManagementTool

使用LangChain集成管理缓存。

高级功能

相关性排名

服务器使用TF-IDF矢量化和余弦相似度根据与查询的相关性对论文进行排名。

PDF处理

多种提取方法(PyPDF2、pdfplumber)可确保从PDF中提取强大的文本。

缓存系统

智能缓存减少了API调用并改进了响应时间。

批处理

使用批处理程序高效处理多个研究主题。

Docker部署

该项目包括一个生产就绪的Dockerfile,其中包含:

  • 轻量级Python 3.11-slim基础镜像
  • 优化层缓存以实现更快的构建
  • 端口8090上预先配置的HTTP服务器
  • 对持久缓存的卷支持
  • 环境变量配置

发展

运行测试

pytest tests/

代码质量

black src/ tests/
flake8 src/ tests/
mypy src/

建筑

python setup.py build

Docker开发

# Build development image
docker build -t arxiv-research-mcp:dev .

# Run with source code mounted for development
docker run -p 8090:8090 \
  -v $(pwd)/src:/app/src \
  -v $(pwd)/config:/app/config \
  -v $(pwd)/cache:/app/cache \
  arxiv-research-mcp:dev

# Run tests in Docker
docker run arxiv-research-mcp:dev pytest tests/

建筑

arxiv-research-mcp/
├── src/
│   ├── server.py              # Main MCP server
│   ├── models/                # Data models
│   ├── services/              # Core services
│   └── utils/                 # Utility functions
├── integrations/              # External integrations
├── scripts/                   # Utility scripts
├── tests/                     # Test suite
└── examples/                  # Usage examples

文档

有关详细文档和指南,请参阅 文件/ 目录:

贡献

  1. 分叉存储库
  2. 创建要素分支
  3. 进行更改
  4. 添加新功能的测试
  5. 提交拉取请求

许可证

此项目根据MIT许可证获得许可-请参阅 许可证 文件以获取详细信息。

故障排除

Docker问题

端口已在使用中:

# Use a different port
docker run -p 8080:8090 arxiv-research-mcp

权限被拒绝:

# Run with proper permissions
sudo docker run -p 8090:8090 arxiv-research-mcp

构建失败:

# Clean build
docker system prune -a
docker build --no-cache -t arxiv-research-mcp .

集装箱立即退出:

# Check logs
docker logs 
# Run interactively
docker run -it arxiv-research-mcp /bin/bash

支持

  • 问题:
  • 文档:
  • 讨论:

致谢

  • arXiv提供学术论文数据库
  • 服务器框架的MCP(模型上下文协议)
  • 使用的各种库的开源社区

目录标签

目录标签

搜索PythonClaude学术搜索本地部署论文分析AI排序全文提取研究工具

支持客户端

Claude

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

4

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP