arXiv Paper Reader
Steps
1. Fetch metadata with WebFetch
Use WebFetch to load the arXiv page and extract paper information.
- Title
- Authors
- Abstract
2. Download the PDF
curl -L -o /tmp/paper.pdf "https://arxiv.org/pdf/{paper_id}.pdf"
3. Extract the PDF contents
Prefer pdfvision — it reports per-page density and works in any agent runtime that can spawn a CLI:
npx pdfvision /tmp/paper.pdf
If only a Claude Code-style multimodal Read tool is available, Read /tmp/paper.pdf also works.