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
| Name | Type | Required | Description |
|---|---|---|---|
arxiv_id | string | yes | arXiv 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
| Field | Type | Description |
|---|---|---|
arxiv_id | string | arXiv identifier |
title | string | Paper title |
summary | string | Paper abstract/summary |
authors | array | List of author names |
categories | array | List of arXiv category tags |
primary_category | string | null | Primary arXiv category |
published | string | Publication date (ISO 8601) |
updated | string | Last update date (ISO 8601) |
pdf_url | string | null | URL to PDF version |
abs_url | string | null | URL to abstract page |
doi | string | null | Digital Object Identifier if available |
journal_ref | string | null | Journal reference if published |
comment | string | null | Author 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.