searxng_search
Perform web searches through a SearxNG instance to retrieve search results with titles, URLs, and content snippets for any query.
Instructions
Searches the web using a SearxNG instance and returns a list of results.
Args:
query: The search query.
max_results: The maximum number of results to return. Defaults to 30.
Returns:
A list of dictionaries, where each dictionary represents a search result
and contains the title, URL, and content snippet. Returns an error
message in a dictionary if the search fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 30,
"title": "Max Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}