web_search
Search the web with DuckDuckGo to retrieve titles, URLs, and snippets for top results, without fetching full page content.
Instructions
Search the web using DuckDuckGo and return results.
Performs a web search and returns titles, URLs, and snippets for the top results. Does not fetch the full page content - use web_fetch for that.
Example: web_search(query="Microsoft Fabric lakehouse architecture")
web_search(
query="python-pptx table formatting",
max_results=10
)Args: query: Search query string max_results: Maximum number of results to return (default: 5) region: DuckDuckGo region code (default: "wt-wt" for worldwide)
Returns: Dictionary with search results (title, url, snippet)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query string | |
| max_results | No | Maximum number of results to return (default: 5) | |
| region | No | DuckDuckGo region code (default: "wt-wt" for worldwide) |