get_paper

Pack: arxiv · Endpoint: https://gateway.pipeworx.io/arxiv/mcp

Fetch a single arXiv paper by its ID (e.g., “2310.06825”, “2310.06825v2”, or legacy “cs.CL/0301001”). Returns full metadata: title, authors, abstract, categories, DOI (if linked), PDF URL.

Parameters

NameTypeRequiredDescription
arxiv_idstringyesarXiv identifier (with or without version suffix)

Example call

curl -X POST https://gateway.pipeworx.io/arxiv/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_paper","arguments":{}}}'

Response shape

Always returns: arxiv_id, title, summary, authors, categories, published, updated

FieldTypeDescription
arxiv_idstringarXiv identifier
titlestringPaper title
summarystringPaper abstract/summary
authorsarrayList of author names
categoriesarrayList of arXiv category tags
primary_categorystring | nullPrimary arXiv category
publishedstringPublication date (ISO 8601)
updatedstringLast update date (ISO 8601)
pdf_urlstring | nullURL to PDF version
abs_urlstring | nullURL to abstract page
doistring | nullDigital Object Identifier if available
journal_refstring | nullJournal reference if published
commentstring | nullAuthor comment if present
Full JSON Schema
{
  "type": "object",
  "properties": {
    "arxiv_id": {
      "type": "string",
      "description": "arXiv identifier"
    },
    "title": {
      "type": "string",
      "description": "Paper title"
    },
    "summary": {
      "type": "string",
      "description": "Paper abstract/summary"
    },
    "authors": {
      "type": "array",
      "description": "List of author names",
      "items": {
        "type": "string"
      }
    },
    "categories": {
      "type": "array",
      "description": "List of arXiv category tags",
      "items": {
        "type": "string"
      }
    },
    "primary_category": {
      "type": [
        "string",
        "null"
      ],
      "description": "Primary arXiv category"
    },
    "published": {
      "type": "string",
      "description": "Publication date (ISO 8601)"
    },
    "updated": {
      "type": "string",
      "description": "Last update date (ISO 8601)"
    },
    "pdf_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to PDF version"
    },
    "abs_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "URL to abstract page"
    },
    "doi": {
      "type": [
        "string",
        "null"
      ],
      "description": "Digital Object Identifier if available"
    },
    "journal_ref": {
      "type": [
        "string",
        "null"
      ],
      "description": "Journal reference if published"
    },
    "comment": {
      "type": [
        "string",
        "null"
      ],
      "description": "Author comment if present"
    }
  },
  "required": [
    "arxiv_id",
    "title",
    "summary",
    "authors",
    "categories",
    "published",
    "updated"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "arxiv": {
      "url": "https://gateway.pipeworx.io/arxiv/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026