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

NameTypeRequiredDescription
idstringyesPapers 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

FieldTypeDescription
idstringPapers With Code paper ID
arxiv_idstring | nullArXiv ID of the paper
titlestring | nullPaper title
abstractstring | nullPaper abstract
authorsarrayList of paper authors
publishedstring | nullPublication date
conferencestring | nullConference name
proceedingstring | nullProceeding identifier
url_absstring | nullURL to paper abstract
url_pdfstring | nullURL 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.

Regenerated from source · build May 9, 2026