arXiv
liveResearchSciencearXiv preprint server — search and fetch papers across physics, math, CS, quant bio, statistics, econ, and more. No auth.
2tools
0msauth
free tier50 calls/day
Tools
search_papersrequired: querySearch 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
NameTypeDescription
queryreqstringQuery string with optional field prefixesmax_resultsoptnumber1-100 (default 10)sort_byoptstringrelevance | lastUpdatedDate | submittedDatesort_orderoptstringascending | descendingTry it
Response
get_paperrequired: arxiv_idFetch a single arXiv paper by ID (e.g., "2310.06825" or legacy "cs.CL/0301001").
Parameters
NameTypeDescription
arxiv_idreqstringarXiv identifierTry 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");