pi-arxiv
arXiv paper search and lookup tools for pi
Package details
Install pi-arxiv from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:pi-arxiv- Package
pi-arxiv- Version
0.1.0- Published
- Feb 28, 2026
- Downloads
- 46/mo · 19/wk
- Author
- fywang96
- License
- MIT
- Types
- extension
- Size
- 10.6 KB
- Dependencies
- 1 dependency · 4 peers
Pi manifest JSON
{
"extensions": [
"./index.ts"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
pi-arxiv
arXiv paper search and lookup tools for pi.
Registers two tools the LLM can call:
arxiv_search— Search papers by query, category, and sort order. Returns titles, authors, abstracts, dates, and PDF links.arxiv_paper— Fetch full details of a specific paper by ID or URL.
Install
pi install npm:pi-arxiv
Tools
arxiv_search
| Parameter | Description |
|---|---|
query |
Search query, e.g. "vision language action model" |
category |
Optional category filter: cs.RO, cs.LG, cs.CV, cs.AI, cs.CL, stat.ML, etc. |
max_results |
Max papers to return (default 10, max 50) |
sort_by |
relevance, lastUpdatedDate, or submittedDate |
start |
Start index for pagination |
arxiv_paper
| Parameter | Description |
|---|---|
id |
arXiv ID (2401.12345, 2401.12345v2) or full URL (https://arxiv.org/abs/2401.12345) |
Examples
- "Search arXiv for recent papers on diffusion policies in robotics"
- "Look up arxiv paper 2303.04137"
- "Find cs.RO papers on sim-to-real transfer, sorted by date"