PapersWithCode MCP
mcp-paperswithcode
🦾 功能
允许 AI 助手查找和阅读论文,以及查看相关代码库以获取更多背景信息。
该 MCP 服务器提供了一个可以与 PapersWithCode API 交互的模型上下文协议 (MCP) 客户端。
此外,还引入了辅助工具,使 AI 代理更容易利用通过 PapersWithCode API 提供的信息。
🚀 入门
通过 Smithery 安装
要通过Smithery自动为 Claude Desktop 安装 mcp-paperswithcode:
npx -y @smithery/cli install @hbg/mcp-paperswithcode --client claude工具
论文搜索与检索
搜索论文
通过摘要、标题、arxiv ID 等可选筛选条件搜索论文:
result = await search_papers( abstract="neural networks", title="attention mechanism", arxiv_id=None, page=1, items_per_page=20 )获取纸张
通过 ID 获取特定论文的详细信息:
result = await get_paper( paper_id="paper123" )从 URL 阅读论文
从论文的 URL 中提取并阅读其内容:
result = await read_paper_from_url( paper_url="https://arxiv.org/pdf/1706.03762.pdf" )
Related MCP server: scholar-search-mcp
纸质部件
列出论文结果
列出 PapersWithCode 中给定论文 ID 的结果:
result = await list_paper_results( paper_id="paper123", page=1, items_per_page=20 )列出纸质任务
检索与特定论文 ID 关联的任务:
result = await list_paper_tasks( paper_id="paper123", page=1, items_per_page=20 )列出论文方法
列出与给定论文 ID 相关的方法:
result = await list_paper_methods( paper_id="paper123", page=1, items_per_page=20 )列出论文存储库
检索链接到特定论文 ID 的存储库:
result = await list_paper_repositories( paper_id="paper123", page=1, items_per_page=20 )列出论文数据集
列出特定论文中使用或引用的数据集:
result = await list_paper_datasets( paper_id="paper123", page=1, items_per_page=20 )
研究领域
搜索研究领域
搜索 PapersWithCode 中存在的研究领域:
result = await search_research_areas( name="computer vision", page=1, items_per_page=20 )获取研究领域
通过 ID 获取特定研究领域的详细信息:
result = await get_research_area( area_id="area123" )列出研究领域任务
列出给定研究领域 ID 的任务:
result = await list_research_area_tasks( area_id="area123", page=1, items_per_page=20 )
作者
获取论文作者
获取与全名匹配的作者:
result = await get_paper_author( full_name="Geoffrey Hinton", page=1, items_per_page=20 )按作者 ID 列出论文
使用 ID 列出特定作者撰写的论文:
result = await list_papers_by_author_id( author_id="author123", page=1, items_per_page=20 )
会议
列出会议
列出会议并可选择按名称进行过滤:
result = await list_conferences( conference_name="NeurIPS", page=1, items_per_page=20 )获取会议
通过 ID 获取特定会议的详细信息:
result = await get_conference( conference_id="conf123" )列出会议论文集
列出给定会议的会议记录:
result = await list_conference_proceedings( conference_id="conf123", page=1, items_per_page=20 )获取会议论文集
获取有关特定会议记录的详细信息:
result = await get_conference_proceeding( conference_id="conf123", proceeding_id="proc123" )列出会议论文
列出在特定会议论文集中发表的论文:
result = await list_conference_papers( conference_id="conf123", proceeding_id="proc123", page=1, items_per_page=20 )
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityNot gradedmaintenanceA server that allows AI assistants to perform web searches using Perplexity's sonar-deep-research model with citation support.111
- AlicenseNot gradedqualityCmaintenanceAn MCP server for academic paper search that integrates with AI assistants (e.g., Claude Code, Cursor), enabling them to search and retrieve academic paper metadata.237MIT
- FlicenseAqualityDmaintenanceA streamlined MCP server that connects AI assistants to arXiv's vast collection of academic papers, enabling search, retrieval, and analysis of research papers.71
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that provides AI assistants with a seamless, programmatic interface to search and read academic papers from the open-access arXiv repository.2MIT
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Academic research MCP server for paper search, citation checks, graphs, and deep research.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hbg/mcp-paperswithcode'
If you have feedback or need assistance with the MCP directory API, please join our Discord server