What is the Brave Search MCP Server?
The Brave Search MCP Server equips AI agents with independent, privacy-first web searching capabilities. Built on the Brave Search API, it allows LLMs to pull live web search results, news headlines, and geographic points of interest (POI) without tracking user queries or selling prompt data to ad brokers.
Key Features & Tools
brave_web_search: Execute real-time web queries with snippet summarization, title extraction, and URL verification.brave_local_search: Query local businesses, addresses, ratings, and physical locations.- Independent Index: Relies on Brave’s independent web crawl rather than repackaged Google or Bing indices.
- Low Latency: Fast JSON responses optimized for AI agent tool-calling loops.
Configuration Example
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_brave_search_api_key"
}
}
}
}
Frequently Asked Questions (FAQ)
Is an API key required for Brave Search MCP?
Yes, a Brave Search API key is required. Brave offers a free tier supporting thousands of queries per month for developers.
How does Brave Search compare to Google search for AI agents?
Brave Search provides clean markdown-friendly snippets without aggressive CAPTCHA blocks or ad-tracking redirects, making it ideal for LLM context retrieval.
Does it support news search?
Yes, the web search tool includes recency filtering for breaking news and technical updates.