Skip to main content

ArXiv Search Pack

TrustedSandbox optionalv1.0.0MITUnverified

by 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.

langchaincrewaigeneric

Quick Start

bash
agentnode install arxiv-search-pack

Runs in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.

Usage

From package
python
from 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

low confidence30/100Unverified
smokeSmoke test failed
0/25
testsTests failed
0/15
importAll tools imported successfully
+15/15
installInstalled in 1.5s
+15/15
contractContract not validated
0/10
determinismNo determinism data
0/5
reliabilityNo stability data
0/10

Package installs and imports correctly.

install1.5s
import64ms
smoke105ms
tests1.2s

This package scored below the verification threshold. Some checks may have failed or produced inconclusive results.

Verified in cases_real mode

Python 3.12.3ffmpegpopplertesseractuv

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

arxiv_searchsearch_arxivtool

Permissions

Sandbox optionalFrom a trusted publisher — runs on the host by default. You can require isolation with sandbox.host_trust_policy.

Declared by the publisher. Checked before execution by the policy gate.

Networkunrestricted
Filesystemtemp
Code Executionnone
Data Accessinput_only
User Approvalnever

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.

bash
agentnode install arxiv-search-pack

Files (3)

License

MIT

Stats

Downloads0
Installs0
Versionv1.0.0
Published3/16/2026
Channelstable
Typetoolpack
Entrypointarxiv_search_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode