Papers With Code
live ScienceBrowse ML research papers and their linked code repositories
Tools
search_papers
required: query Search ML research papers on Papers With Code by keyword. Returns title, authors, abstract, conference, and links.
query req string Search query (e.g., "attention transformer") limit opt number Number of results to return (default: 10, max: 50) Try it
get_paper
required: id Get a single paper by its Papers With Code ID. Returns full metadata including title, abstract, authors, and links.
id req string Papers With Code paper ID (e.g., "attention-is-all-you-need") Try it
get_repositories
required: id Get code repositories linked to a paper by paper ID. Returns repo URL, stars, framework, and whether it is the official implementation.
id req string Papers With Code paper ID Try it
trending_papers Get trending ML research papers ordered by conference proceedings. Returns title, authors, conference, and links.
limit opt number Number of results to return (default: 10, max: 50) Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/paperswithcode/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/paperswithcode/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_papers","arguments":{"query": "hello"}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_papers", {"query":"example"}); // Or ask in plain English:
const answer = await px.ask("browse ml research papers and their linked code repositories");