
A MCP for searching and downloading academic papers from multiple sources like arXiv, PubMed, bioRxiv, etc.
What is an MCP Server?
| Attribute | Details |
|---|---|
| Docker Image | mcp/paper-search |
| Author | openags |
| Repository | [***] |
| Dockerfile | [***] |
| Docker Image built by | Docker Inc. |
| Docker Scout Health Score | !Docker Scout Health Score |
| Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/paper-search --key [***] |
| Licence | MIT License |
| Tools provided by this Server | Short Description |
|---|---|
download_arxiv | Download PDF of an arXiv paper. |
download_biorxiv | Download PDF of a bioRxiv paper. |
download_crossref | Attempt to download PDF of a CrossRef paper. |
download_iacr | Download PDF of an IACR ePrint paper. |
download_medrxiv | Download PDF of a medRxiv paper. |
download_pubmed | Attempt to download PDF of a PubMed paper. |
download_semantic | Download PDF of a Semantic Scholar paper. |
get_crossref_paper_by_doi | Get a specific paper from CrossRef by its DOI. |
read_arxiv_paper | Read and extract text content from an arXiv paper PDF. |
read_biorxiv_paper | Read and extract text content from a bioRxiv paper PDF. |
read_crossref_paper | Attempt to read and extract text content from a CrossRef paper. |
read_iacr_paper | Read and extract text content from an IACR ePrint paper PDF. |
read_medrxiv_paper | Read and extract text content from a medRxiv paper PDF. |
read_pubmed_paper | Read and extract text content from a PubMed paper. |
read_semantic_paper | Read and extract text content from a Semantic Scholar paper. |
search_arxiv | Search academic papers from arXiv. |
search_biorxiv | Search academic papers from bioRxiv. |
search_crossref | Search academic papers from CrossRef database. |
search_google_scholar | Search academic papers from Google Scholar. |
search_iacr | Search academic papers from IACR ePrint Archive. |
search_medrxiv | Search academic papers from medRxiv. |
search_pubmed | Search academic papers from PubMed. |
search_semantic | Search academic papers from Semantic Scholar. |
download_arxivDownload PDF of an arXiv paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | arXiv paper ID (e.g., '2106.***'). |
save_path | string optional | Directory to save the PDF (default: './downloads'). |
download_biorxivDownload PDF of a bioRxiv paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | bioRxiv DOI. |
save_path | string optional | Directory to save the PDF (default: './downloads'). |
download_crossrefAttempt to download PDF of a CrossRef paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | CrossRef DOI (e.g., '10.1038/nature***'). |
save_path | string optional | Directory to save the PDF (default: './downloads'). |
download_iacrDownload PDF of an IACR ePrint paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | IACR paper ID (e.g., '2009/101'). |
save_path | string optional | Directory to save the PDF (default: './downloads'). |
download_medrxivDownload PDF of a medRxiv paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | medRxiv DOI. |
save_path | string optional | Directory to save the PDF (default: './downloads'). |
download_pubmedAttempt to download PDF of a PubMed paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | PubMed ID (PMID). |
save_path | string optional | Directory to save the PDF (default: './downloads'). |
download_semanticDownload PDF of a Semantic Scholar paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | Semantic Scholar paper ID, Paper identifier in one of the following formats: |
save_path | string optional | Directory to save the PDF (default: './downloads'). |
get_crossref_paper_by_doiGet a specific paper from CrossRef by its DOI.
| Parameters | Type | Description |
|---|---|---|
doi | string | Digital Object Identifier (e.g., '10.1038/nature***'). |
read_arxiv_paperRead and extract text content from an arXiv paper PDF.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | arXiv paper ID (e.g., '2106.***'). |
save_path | string optional | Directory where the PDF is/will be saved (default: './downloads'). |
read_biorxiv_paperRead and extract text content from a bioRxiv paper PDF.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | bioRxiv DOI. |
save_path | string optional | Directory where the PDF is/will be saved (default: './downloads'). |
read_crossref_paperAttempt to read and extract text content from a CrossRef paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | CrossRef DOI (e.g., '10.1038/nature***'). |
save_path | string optional | Directory where the PDF is/will be saved (default: './downloads'). |
read_iacr_paperRead and extract text content from an IACR ePrint paper PDF.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | IACR paper ID (e.g., '2009/101'). |
save_path | string optional | Directory where the PDF is/will be saved (default: './downloads'). |
read_medrxiv_paperRead and extract text content from a medRxiv paper PDF.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | medRxiv DOI. |
save_path | string optional | Directory where the PDF is/will be saved (default: './downloads'). |
read_pubmed_paperRead and extract text content from a PubMed paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | PubMed ID (PMID). |
save_path | string optional | Directory where the PDF would be saved (unused). |
read_semantic_paperRead and extract text content from a Semantic Scholar paper.
| Parameters | Type | Description |
|---|---|---|
paper_id | string | Semantic Scholar paper ID, Paper identifier in one of the following formats: |
save_path | string optional | Directory where the PDF is/will be saved (default: './downloads'). |
search_arxivSearch academic papers from arXiv.
| Parameters | Type | Description |
|---|---|---|
query | string | Search query string (e.g., 'machine learning'). |
max_results | integer optional | Maximum number of papers to return (default: 10). |
search_biorxivSearch academic papers from bioRxiv.
| Parameters | Type | Description |
|---|---|---|
query | string | Search query string (e.g., 'machine learning'). |
max_results | integer optional | Maximum number of papers to return (default: 10). |
search_crossrefSearch academic papers from CrossRef database.
CrossRef is a scholarly infrastructure organization that provides persistent identifiers (DOIs) for scholarly content and metadata. It's one of the largest citation databases covering millions of academic papers, journals, books, and other scholarly content.
| Parameters | Type | Description |
|---|---|---|
kwargs | string | |
query | string | Search query string (e.g., 'machine learning', 'climate change'). |
max_results | integer optional | Maximum number of papers to return (default: 10, max: 1000). |
search_google_scholarSearch academic papers from Google Scholar.
| Parameters | Type | Description |
|---|---|---|
query | string | Search query string (e.g., 'machine learning'). |
max_results | integer optional | Maximum number of papers to return (default: 10). |
search_iacrSearch academic papers from IACR ePrint Archive.
| Parameters | Type | Description |
|---|---|---|
query | string | Search query string (e.g., '***graphy', 'secret sharing'). |
fetch_details | boolean optional | Whether to fetch detailed information for each paper (default: True). |
max_results | integer optional | Maximum number of papers to return (default: 10). |
search_medrxivSearch academic papers from medRxiv.
| Parameters | Type | Description |
|---|---|---|
query | string | Search query string (e.g., 'machine learning'). |
max_results | integer optional | Maximum number of papers to return (default: 10). |
search_pubmedSearch academic papers from PubMed.
| Parameters | Type | Description |
|---|---|---|
query | string | Search query string (e.g., 'machine learning'). |
max_results | integer optional | Maximum number of papers to return (default: 10). |
search_semanticSearch academic papers from Semantic Scholar.
| Parameters | Type | Description |
|---|---|---|
query | string | Search query string (e.g., 'machine learning'). |
max_results | integer optional | Maximum number of papers to return (default: 10). |
year | string optional | Optional year filter (e.g., '2019', '2016-2020', '2010-', '-2015'). |
json{ "mcpServers": { "paper-search": { "command": "docker", "args": [ "run", "-i", "--rm", "mcp/paper-search" ] } } }
Why is it safer to run MCP Servers with Docker?
来自真实用户的反馈,见证轩辕镜像的优质服务
免费版仅支持 Docker Hub 加速,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
免费版仅支持 docker.io;专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像加速服务
在 Docker Desktop 配置镜像加速
Docker Compose 项目配置加速
Kubernetes 集群配置 Containerd
在宝塔面板一键配置镜像加速
Synology 群晖 NAS 配置加速
飞牛 fnOS 系统配置镜像加速
极空间 NAS 系统配置加速服务
爱快 iKuai 路由系统配置加速
绿联 NAS 系统配置镜像加速
QNAP 威联通 NAS 配置加速
Podman 容器引擎配置加速
HPC 科学计算容器配置加速
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名加速
需要其他帮助?请查看我们的 常见问题 或 官方QQ群: 13763429