Brave Search MCP Server

MIT License
2,005
10,010

brave_web_search

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

NameRequiredDescriptionDefault
countNoNumber of results (1-20, default 10)
offsetNoPagination offset (max 9, default 0)
queryYesSearch query (max 400 chars, 50 words)

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" }

You must be authenticated.

Other Tools