get_paper
Pack: paperswithcode · Endpoint: https://gateway.pipeworx.io/paperswithcode/mcp
Get full details for a specific paper by ID. Returns title, abstract, authors, publication venue, and links.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Papers With Code paper ID (e.g., “attention-is-all-you-need”) |
Example call
Arguments
{
"id": "attention-is-all-you-need"
}
curl
curl -X POST https://gateway.pipeworx.io/paperswithcode/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_paper","arguments":{"id":"attention-is-all-you-need"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_paper', {
"id": "attention-is-all-you-need"
});
Response shape
Always returns: id, arxiv_id, title, abstract, authors, published, conference, proceeding, url_abs, url_pdf
| Field | Type | Description |
|---|---|---|
id | string | Papers With Code paper ID |
arxiv_id | string | null | ArXiv ID of the paper |
title | string | null | Paper title |
abstract | string | null | Paper abstract |
authors | array | List of paper authors |
published | string | null | Publication date |
conference | string | null | Conference name |
proceeding | string | null | Proceeding identifier |
url_abs | string | null | URL to paper abstract |
url_pdf | string | null | URL to paper PDF |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Papers With Code paper ID"
},
"arxiv_id": {
"type": [
"string",
"null"
],
"description": "ArXiv ID of the paper"
},
"title": {
"type": [
"string",
"null"
],
"description": "Paper title"
},
"abstract": {
"type": [
"string",
"null"
],
"description": "Paper abstract"
},
"authors": {
"type": "array",
"description": "List of paper authors",
"items": {
"type": "string"
}
},
"published": {
"type": [
"string",
"null"
],
"description": "Publication date"
},
"conference": {
"type": [
"string",
"null"
],
"description": "Conference name"
},
"proceeding": {
"type": [
"string",
"null"
],
"description": "Proceeding identifier"
},
"url_abs": {
"type": [
"string",
"null"
],
"description": "URL to paper abstract"
},
"url_pdf": {
"type": [
"string",
"null"
],
"description": "URL to paper PDF"
}
},
"required": [
"id",
"arxiv_id",
"title",
"abstract",
"authors",
"published",
"conference",
"proceeding",
"url_abs",
"url_pdf"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"paperswithcode": {
"url": "https://gateway.pipeworx.io/paperswithcode/mcp"
}
}
}
See Getting Started for client-specific install steps.