Papers With Code
liveAI/MLResearchBrowse ML research papers and their linked code repositories
Tools
search_papersrequired: querySearch ML research papers on Papers With Code by keyword. Returns title, authors, abstract, conference, and links.
queryreqstringSearch query (e.g., "attention transformer")limitoptnumberNumber of results to return (default: 10, max: 50)Try it
get_paperrequired: idGet a single paper by its Papers With Code ID. Returns full metadata including title, abstract, authors, and links.
idreqstringPapers With Code paper ID (e.g., "attention-is-all-you-need")Try it
get_repositoriesrequired: idGet code repositories linked to a paper by paper ID. Returns repo URL, stars, framework, and whether it is the official implementation.
idreqstringPapers With Code paper IDTry it
trending_papersGet trending ML research papers ordered by conference proceedings. Returns title, authors, conference, and links.
limitoptnumberNumber 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");