SEARCH_WEB_DUCKDUCKGO
Performs a web search using DuckDuckGo to find real-time regulatory updates, ISO requirements, or recent cyber threats.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | The search query (e.g., 'latest ISO 27001 changes 2026' or 'recent GDPR fines healthcare') |
max_results | integer | — | Maximum number of results to return (default 5, max 10) |
How to use it
You normally trigger this by describing what you want in chat — the agent selects SEARCH_WEB_DUCKDUCKGO automatically. For example:
Try saying
“search the web for the latest on fusion energy”
In a workflow
As a step in a multi-step workflow DAG:
json
{
"id": "s1",
"agent": "intelligence_tools",
"action": "SEARCH_WEB_DUCKDUCKGO",
"args": {
"query": "example query",
"max_results": 5
},
"depends_on": [],
"outputs": []
}Direct call
For scripting, call it directly via POST /execute_tool. Every tool returns { success, message, data }.
bash
curl -X POST http://127.0.0.1:8000/execute_tool \
-H "Content-Type: application/json" \
-d '{"tool_name":"SEARCH_WEB_DUCKDUCKGO","args":{"query":"example query","max_results":5}}'Part of the intelligence_tools plugin. Browse the full Plugin & Tool Catalog or the relevant feature guide.