search_and_fetch
Search the web using DuckDuckGo and retrieve structured results including titles, URLs, snippets, and summaries. Specify a query and limit (max 10) to filter and return relevant information.
Instructions
Search the web using DuckDuckGo and return results.
Args:
query: The search query string
limit: Maximum number of results to return (default: 3, maximum 10)
Returns:
List of dictionaries containing
- title
- url
- snippet
- summary markdown (empty if not available)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 3,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_and_fetchArguments",
"type": "object"
}