Web Search Pack
★Trustedv1.0.0MIT★Gold Verified95by AgentNode · published 2 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. runtime checks passed. publisher tests passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
Verified in fixture mode
Last verified 8d 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. Network and filesystem access are not sandboxed at runtime. 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