ArXiv Search Pack
★Trusted◇Sandbox optionalv1.0.0MITUnverifiedby AgentNode · published 5 months ago · toolpack
Search and retrieve academic papers from ArXiv.
Query ArXiv for research papers by topic, author, or keyword. Returns paper metadata, abstracts, and download links. Track new papers in your research area.
Quick Start
agentnode install arxiv-search-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom arxiv_search_pack.tool import run
result = run(
capability="search_arxiv",
params={
"query": "transformer architecture efficiency pruning",
"max_results": 5,
"sort_by": "submitted_date"
}
)
for paper in result["papers"]:
print(f"[{paper['arxiv_id']}] {paper['title']}")
print(f" Authors: {', '.join(paper['authors'][:3])}")
print(f" Submitted: {paper['submitted']}")
print(f" Abstract: {paper['abstract'][:120]}...")
print()Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs and imports correctly.
This package scored below the verification threshold. Some checks may have failed or produced inconclusive results.
Verified in cases_real mode
Last verified 27d ago· Runner v2.0.0
Use this when you need to...
- ›Search for recent machine learning papers by topic
- ›Retrieve paper abstracts and metadata by ArXiv ID
- ›Find all papers by a specific author
- ›Download PDF links for literature reviews
- ›Track new publications in a research area
README
Version History
Capabilities
Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install arxiv-search-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode