Skip to main content

Web Search Pack

TrustedSandbox optionalv1.0.0MITUnverified

by AgentNode · published 3 months ago · toolpack

Search the web and retrieve structured results for AI agents.

Wraps duckduckgo-search to provide web search capabilities.

langchaincrewaigeneric

Quick Start

bash
agentnode install web-search-pack

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

Usage

From package
python
from web_search_pack.tool import run

result = run(
    query="best practices for deploying AI agents in production 2026",
    max_results=5,
    region="us-en"
)

for i, item in enumerate(result["results"], 1):
    print(f"{i}. {item['title']}")
    print(f"   {item['url']}")
    print(f"   {item['snippet']}")
    print()

print(f"Total results returned: {len(result['results'])}")
print(f"Search query: {result['query']}")

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 2.0s
+15/15
contractContract not validated
0/10
determinismNo determinism data
0/5
reliabilityNo stability data
0/10

Package installs and imports correctly.

install2.0s
import74ms
smoke139ms
tests1.3s

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 28d ago· Runner v2.0.0

Use this when you need to...

  • Search the web for current information to ground AI agent responses
  • Find competitor pricing pages and extract key data points
  • Retrieve recent news articles on a specific topic for summarization
  • Look up technical documentation and Stack Overflow solutions
  • Gather market research data from multiple web sources

README

Version History

Capabilities

web_searchsearch_webtool

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.

Networkrestricted
Filesystemnone
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 web-search-pack

Files (5)

License

MIT

Stats

Downloads2
Installs0
Versionv1.0.0
Published3/13/2026
Channelstable
Typetoolpack
Entrypointweb_search_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode