This MCP server provides a Model Context Protocol (MCP) client that interfaces with the PapersWithCode API. It includes tools for searching, retrieving, and parsing information on research papers, authors, datasets, conferences, and more. To install mcp-paperswithcode for Claude Desktop automatically via Smithery: Search for papers using optional filters. - abstract (str, optional): Filter by abst
Add this skill
npx mdskills install hbg/mcp-paperswithcodeComprehensive MCP server offering rich research paper discovery and metadata retrieval tools
1# mcp-paperswithcode23[](https://smithery.ai/server/@hbg/mcp-paperswithcode)45# ๐ฆพ Features67> Allows AI assistants to find and read papers, as well as view related code repositories for further context.89This MCP server provides a Model Context Protocol (MCP) client that interfaces with the PapersWithCode API.1011It includes tools for searching, retrieving, and parsing information on research papers, authors, datasets, conferences, and more.1213# ๐ Getting Started1415### Installing via Smithery1617To install mcp-paperswithcode for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@hbg/mcp-paperswithcode):1819```bash20npx -y @smithery/cli install @hbg/mcp-paperswithcode --client claude21```2223# ๐ ๏ธ Tools2425## ๐ Paper Tools2627### `search_papers`28Search for papers using optional filters.2930- `abstract` (str, optional): Filter by abstract text.31- `title` (str, optional): Filter by title text.32- `arxiv_id` (str, optional): Filter by ArXiv ID.3334### `get_paper`35Get a paper's metadata by its ID.3637- `paper_id` (str): The paper ID.3839### `read_paper_from_url`40Extract readable text from a paper given its URL.4142- `paper_url` (str): The direct PDF or HTML URL to a paper.4344### `list_paper_results`45List benchmark results associated with a paper.4647- `paper_id` (str): The paper ID.4849### `list_paper_tasks`50List tasks associated with a paper.5152- `paper_id` (str): The paper ID.5354### `list_paper_methods`55List methods discussed in a paper.5657- `paper_id` (str): The paper ID.5859### `list_paper_repositories`60List code repositories linked to a paper.6162- `paper_id` (str): The paper ID.6364### `list_paper_datasets`65List datasets mentioned or used in a paper.6667- `paper_id` (str): The paper ID.6869## ๐ง Research Area Tools7071### `search_research_areas`72Search research areas by name.7374- `name` (str): Partial or full name of the research area.7576### `get_research_area`77Get metadata for a specific research area.7879- `area_id` (str): The area ID.8081### `list_research_area_tasks`82List tasks associated with a research area.8384- `area_id` (str): The area ID.8586## ๐จโ๐ฌ Author Tools8788### `search_authors`89Search authors by full name.9091- `full_name` (str): Full name of the author.9293### `get_paper_author`94Get metadata for an author by ID.9596- `author_id` (str): The author ID.9798### `list_papers_by_author_id`99List all papers written by an author via ID.100101- `author_id` (str): The author ID.102103### `list_papers_by_author_name`104Search by name and return papers for the first matching author.105106- `author_name` (str): Full name of the author.107108## ๐ Conference Tools109110### `list_conferences`111List conferences, optionally filter by name.112113- `conference_name` (str, optional): Full or partial name.114115### `get_conference`116Get metadata for a specific conference.117118- `conference_id` (str): The conference ID.119120### `list_conference_proceedings`121List all proceedings under a conference.122123- `conference_id` (str): The conference ID.124125### `get_conference_proceeding`126Get details for a specific conference proceeding.127128- `conference_id` (str): The conference ID.129- `proceeding_id` (str): The proceeding ID.130131### `list_conference_papers`132List all papers for a specific conference proceeding.133134- `conference_id` (str): The conference ID.135- `proceeding_id` (str): The proceeding ID.136
Full transparency โ inspect the skill content before installing.