
brave-search-mcp
by mikechao·★ 117·Score 47
MCP server integrating Brave Search API with web, image, video, news, local POI, and LLM context search capabilities.
Overview
The brave-search-mcp is a comprehensive MCP server implementation that provides access to Brave Search API through multiple specialized tools. It offers six distinct search capabilities including traditional web search, image search, video search, news search, local points of interest search, and a specialized LLM context search that extracts and formats web content optimized for AI consumption. The server supports both stdio and HTTP modes with proper configuration options.
Try asking AI
After installing, here are 7 things you can ask your AI assistant:
When to choose this
Choose this when you need comprehensive search capabilities (web, images, news, local) integrated into your MCP-based AI workflows.
When NOT to choose this
Don't choose this if you need search results from multiple providers or have concerns about vendor lock-in with Brave's API.
Tools this server exposes
6 tools extracted from the READMEbrave_web_searchExecute web searches using Brave's API
brave_image_searchGet images from the web relevant to the query
brave_news_searchSearch the web for news articles, trending topics, or recent events
brave_local_searchSearch for local businesses, services, and points of interest
brave_video_searchSearch the web for videos
brave_llm_context_searchPre-extracted web content optimized for AI agents, LLM grounding, and RAG pipelines
Comparable tools
Installation
Installation
- Get a Brave Search API key from [Brave Search API account](https://brave.com/search/api/)
Using Claude Desktop
Add to your claude_desktop_config.json:
{
"mcp-servers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"brave-search-mcp"
],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}Running as standalone
BRAVE_API_KEY="your_key_here" npx -y brave-search-mcpFor HTTP mode:
BRAVE_API_KEY="your_key_here" npx -y brave-search-mcp --httpFAQ
- Does this MCP server require authentication?
- Yes, you need to provide a Brave Search API key as an environment variable (BRAVE_API_KEY).
- Can I use this server with ChatGPT?
- Yes, the server supports ChatGPT through OpenAI Apps by running in HTTP mode and creating a local tunnel.
- What is the LLM context search feature?
- The LLM context search extracts and formats web content specifically optimized for AI consumption, with configurable parameters for token limits and snippet count.
Compare brave-search-mcp with
Last updated · Auto-generated from public README + GitHub signals.