The Brave Search MCP Server provides a seamless integration with the Brave Search API, offering both web and local search capabilities through the Model Context Protocol. It enables AI assistants to perform general web searches, find news and articles, and locate local businesses and services with detailed information. With flexible filtering options, pagination support, and smart fallback mechanisms, this MCP server delivers comprehensive search functionality while maintaining privacy standards that Brave is known for. The server automatically handles the transition between local and web searches when needed, ensuring users always get relevant results.
The Brave Search MCP Server allows AI assistants to perform web and local searches using Brave's search engine. This server provides two main tools: brave_web_search
for general web queries and brave_local_search
for finding local businesses and services.
This tool executes web searches with support for pagination and filtering.
Parameters:
query
(string, required): The search terms to look forcount
(number, optional): Number of results per page (maximum 20)offset
(number, optional): Pagination offset for retrieving additional pages (maximum 9)This tool searches for local businesses, restaurants, and services with detailed information.
Parameters:
query
(string, required): Local search termscount
(number, optional): Number of results to return (maximum 20)If no local results are found, this tool automatically falls back to web search to ensure users always get relevant information.
Before using this MCP server, you'll need to obtain a Brave Search API key:
You can run the Brave Search MCP Server using either Docker or NPX.
Add the following configuration to your claude_desktop_config.json
:
{
"mcpServers": {
"brave-search": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"BRAVE_API_KEY",
"mcp/brave-search"
],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
To build the Docker image yourself:
docker build -t mcp/brave-search:latest -f src/brave-search/Dockerfile .
Add the following configuration to your claude_desktop_config.json
:
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-brave-search"
],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
To perform a basic web search:
Use brave_web_search to find information about "climate change solutions"
For paginated results:
Use brave_web_search with the query "electric vehicles", count 10, and offset 1 to see the second page of results
To find local businesses:
Use brave_local_search to find "coffee shops in San Francisco"
To search for specific services with limited results:
Use brave_local_search with the query "dentists near Boston" and count 5
If you encounter issues with the MCP server:
This MCP server is licensed under the MIT License, allowing free use, modification, and distribution subject to the license terms.