brave_web_search
Perform web searches to gather information from diverse online sources including news, articles, and general content. Supports pagination and content filtering for comprehensive research.
Instructions
Performs a web search using the Brave Search 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. Supports pagination, content filtering, and freshness controls. Maximum 20 results per request, with offset for pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query (max 400 chars, 50 words) | |
| count | No | Number of results (1-20, default 10) | |
| offset | No | Pagination offset (max 9, default 0) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "Number of results (1-20, default 10)",
"type": "number"
},
"offset": {
"default": 0,
"description": "Pagination offset (max 9, default 0)",
"type": "number"
},
"query": {
"description": "Search query (max 400 chars, 50 words)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}