SearXNG Server
by ihor-sokoliuk
Verified
searxng_web_search
Performs a web search using the SearxNG API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of results | |
offset | No | Pagination offset | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 20,
"description": "Number of results",
"type": "number"
},
"offset": {
"default": 0,
"description": "Pagination offset",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}