Web Search Pack
★Trusted◇Sandbox optionalv1.0.0MITUnverifiedby AgentNode · published 3 months ago · toolpack
Search the web and retrieve structured results for AI agents.
Wraps duckduckgo-search to provide web search capabilities.
Quick Start
agentnode install web-search-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom 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
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 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
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 web-search-packFiles (5)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode