arXiv
live ScienceResearcharXiv preprint server — search and fetch papers across physics, math, CS, quant bio, statistics, econ, and more. No auth.
2 tools
0ms auth
free tier 50 calls/day
Tools
search_papers
required: query Search arXiv preprints. Plain-text or field-prefixed queries (au:, ti:, abs:, cat:, all:). Combine with AND, OR, ANDNOT. Returns id, title, authors, abstract, categories, published date, PDF URL.
Parameters
Name Type Description
query req string Query string with optional field prefixes max_results opt number 1-100 (default 10) sort_by opt string relevance | lastUpdatedDate | submittedDate sort_order opt string ascending | descending Try it
Response
get_paper
required: arxiv_id Fetch a single arXiv paper by ID (e.g., "2310.06825" or legacy "cs.CL/0301001").
Parameters
Name Type Description
arxiv_id req string arXiv identifier Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/arxiv/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/arxiv/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.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_papers", {"query":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("arxiv preprint server — search and fetch papers across physics, math, cs, quant bio, statistics, econ, and more");