paperwithcode-mcp

paperwithcode-mcp

MCP server that brings AI paper reading and code repository discovery from Hugging Face Papers into any MCP-compatible client.

Category
访问服务器

README

paperwithcode-mcp

MCP server that brings AI paper reading and code repository discovery from Hugging Face Papers into any MCP-compatible client (Claude Desktop, IDE plugins, etc.). Supports both stdio and SSE transports.

Overview

Keeping up with AI research means reading papers, finding code implementations, and tracking daily new releases. This server bridges Hugging Face Papers' rich metadata — AI summaries, GitHub star counts, full paper markdown, and daily trending lists — directly into your AI assistant's toolset. Instead of switching between browser tabs, you query papers conversationally.

What you can do:

  • Paste an arXiv ID and get the corresponding GitHub repo (with star count)
  • Ask for a paper's details: title, authors, abstract, AI summary, keywords
  • Read a paper's full text as markdown in your conversation
  • List today's trending papers on Hugging Face Papers

Quick Start

pip install git+https://github.com/GtJerry111/paperwithcode-hf-mcp.git
paperwithcode-mcp

The server starts in stdio mode, ready to connect to Claude Desktop or any MCP host. Add it to your claude_desktop_config.json (see Claude Desktop Integration) and you're done.

Tools

resolve_code_link

Resolve an arXiv ID to its GitHub repository URL.

Parameters:

Parameter Type Required Description
arxiv_id string Yes The arXiv paper ID (e.g. 2508.02739)

Returns: { "github_url": "https://github.com/shiyu-coder/Kronos" }

Returns null if no GitHub repository is found for the given paper.

get_paper_details

Get detailed paper metadata from Hugging Face Papers.

Parameters:

Parameter Type Required Description
arxiv_id string Yes The arXiv paper ID (e.g. 2508.02739)

Returns: JSON object with:

  • id — arXiv ID
  • title — paper title
  • authors — list of author names
  • publishedAt — publication date
  • summary — abstract text
  • upvotes — upvote count on Hugging Face
  • githubRepo — linked GitHub repository URL (if any)
  • githubStars — GitHub star count (if repo exists)
  • ai_summary — AI-generated summary
  • ai_keywords — list of AI-extracted keywords
  • discussionId — Hugging Face discussion thread ID
  • markdownContentUrl — URL to the full paper markdown

Returns null if the paper is not found.

read_paper

Fetch the full text of a paper as markdown.

Parameters:

Parameter Type Required Description
arxiv_id string Yes The arXiv paper ID (e.g. 2508.02739)

Returns: A markdown string containing the complete paper text (abstract, introduction, method, results, etc.). Returns null if the paper cannot be found or has no markdown source.

list_daily_papers

List papers featured on Hugging Face Papers for a given date.

Parameters:

Parameter Type Required Description
date string No Date in YYYY-MM-DD format. Defaults to today if omitted.

Returns: A list of papers, each containing:

  • id — arXiv ID
  • title — paper title
  • authors — list of author names
  • publishedAt — publication date
  • summary — abstract
  • upvotes — upvote count
  • numComments — number of comments on Hugging Face

Deployment

pip

pip install git+https://github.com/GtJerry111/paperwithcode-hf-mcp.git

paperwithcode-mcp                                        # stdio (default)
paperwithcode-mcp --transport sse --host 0.0.0.0 --port 8787  # SSE

uv

uv tool install git+https://github.com/GtJerry111/paperwithcode-hf-mcp.git

paperwithcode-mcp                                        # stdio

# Update later
uv tool upgrade paperwithcode-mcp

Docker

docker build -t paperwithcode-mcp .
docker run -i --rm paperwithcode-mcp                     # stdio
docker run -i --rm -p 8787:8787 paperwithcode-mcp \
  --transport sse --host 0.0.0.0 --port 8787              # SSE

Claude Desktop Integration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "paperwithcode": {
      "command": "paperwithcode-mcp",
      "args": []
    }
  }
}

If paperwithcode-mcp is not in your PATH after pip install, use the full Python module path or the uvx launcher:

{
  "mcpServers": {
    "paperwithcode": {
      "command": "uvx",
      "args": ["paperwithcode-mcp"]
    }
  }
}

Development

git clone https://github.com/GtJerry111/paperwithcode-hf-mcp.git
cd paperwithcode-hf-mcp

# pip
pip install -e ".[dev]"

# uv
uv sync --group dev

Architecture

The server has a simple data flow:

MCP tool call -> mcp_server.py (FastMCP) -> resolver.py (business logic)
    -> client.py (curl/network) + parser.py (HTML extraction)
  • mcp_server.py — FastMCP instance with 4 tool definitions and the CLI entry point
  • resolver.py — orchestrates calls between client and parser, returns typed results
  • client.pyPaperPageClient wraps curl subprocess, handles proxy and retries
  • parser.py — extracts structured data from Hugging Face paper pages

Data Sources

  • https://huggingface.co/papers/{arxiv_id} — individual paper page (embedded JSON in data-props)
  • https://huggingface.co/api/daily_papers?date=YYYY-MM-DD — daily papers API (no auth)
  • markdownContentUrl — full paper text as markdown from the arXiv HTML conversion

Environment Variables

Variable Default Description
HTTPS_PROXY / HTTP_PROXY / ALL_PROXY Proxy for outgoing HTTP requests
PWC_TIMEOUT 15.0 Request timeout in seconds

Limitations

This project uses Hugging Face Papers as its data source, NOT the paperswithcode.com API (which is no longer available). As a result:

  • No paper search by keyword or title
  • No conference, proceedings, or author browsing
  • No benchmark results or dataset listings

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选