paperwithcode-mcp
Provides tools to retrieve paper metadata, full text, and code repository links using arXiv IDs.
Enables resolution of arXiv papers to their corresponding GitHub repositories and fetching of star counts.
Integrates with Hugging Face Papers to list daily trending papers, access AI summaries, and retrieve detailed paper information.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@paperwithcode-mcplist today's trending papers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: paper-fetch-mcp
Quick Start
pip install git+https://github.com/GtJerry111/paperwithcode-hf-mcp.git
paperwithcode-mcpThe 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
Tool | Description |
| Given an arXiv ID, return its GitHub repository URL |
| Return full metadata: title, authors, abstract, GitHub stars, AI summary, keywords, upvotes |
| Fetch the complete paper text as markdown (converted from arXiv HTML) |
| Return the papers featured on Hugging Face Papers for a given date |
Usage Examples
Each tool accepts simple string arguments and returns JSON. Here is what you can expect from each:
resolve_code_link — "2508.02739" returns {"github_url": "https://github.com/shiyu-coder/Kronos"}
get_paper_details — "2508.02739" returns a rich object with title, authors (list), summary, upvotes (integer), githubStars (integer), ai_summary (string), ai_keywords (list), and more.
read_paper — "2508.02739" returns the full paper as a markdown string (all sections: abstract, introduction, method, results, etc.).
list_daily_papers — "2026-06-23" returns up to 50 papers with id, title, authors, summary, upvotes, and comment count. Omit the date to get today's papers.
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 # SSEuv
uv tool install git+https://github.com/GtJerry111/paperwithcode-hf-mcp.git
paperwithcode-mcp # stdio
# Update later
uv tool upgrade paperwithcode-mcpDocker
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 # SSEClaude 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 devArchitecture
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.py —
PaperPageClientwraps curl subprocess, handles proxy and retriesparser.py — extracts structured data from Hugging Face paper pages
Data Sources
https://huggingface.co/papers/{arxiv_id}— individual paper page (embedded JSON indata-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 |
| — | Proxy for outgoing HTTP requests |
|
| 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/GtJerry111/paperwithcode-hf-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server