Install guide and config at curatedmcp.com
Brave Search MCP: Real-time web search for AI agents without Google's API lock-in
If you're building AI agents in Claude or Cursor, you've hit the wall: you need web search, but Google's API is expensive and restrictive, or you're stuck with outdated embeddings. Brave Search MCP fixes this. It's a Model Context Protocol server that gives your AI agents real-time internet access through Brave's independent search API—no tracking, no ads, no algorithmic bias.
Unlike search integrations that route through Google or rely on cached data, Brave Search delivers fresh results across web pages, news, and local business listings. You get up to 20 results per query, rich snippets, and recency filtering. Best of all? The free tier gives you 2,000 queries monthly, which is enough for serious development and testing without touching your wallet.
What It Does
Brave Search MCP unlocks three core capabilities for your AI agents:
Real-time web search: Your Claude or Cursor agent can now browse the live internet, pull current information, and answer questions grounded in today's data—not yesterday's training data.
Local and news search: Beyond generic web results, agents can search news feeds with date filtering or find local business information with maps data. Useful for building research tools, market analysis agents, or applications that need current events context.
Privacy-first by design: Unlike other integrations, there's no tracking, no user profiling, and no algorithmic filter bubbles. Your agents get independent, unbiased results. This matters if you're building tools for sensitive domains—healthcare research, legal discovery, competitive analysis.
The server works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client. Configuration is one line of code.
How to Install
npx -y @modelcontextprotocol/server-brave-search
Add this to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"brave-search-mcp": {
"command": "npx -y @modelcontextprotocol/server-brave-search",
"env": {
"BRAVE_API_KEY": "your-api-key-here"
}
}
}
}
Grab your free API key at api.search.brave.com.
Real-World Use Cases
- Market research tool: Build an agent that searches for competitor pricing, product launches, and industry news across multiple sites in one query—then synthesizes findings without bias.
- Fact-checking assistant: Your agent researches current claims against live web data, checks news sources, and finds corroborating evidence for fact-checking workflows.
- Startup validation: Query real-time market demand, find relevant discussions on Reddit/forums, check news for trends—all without API sprawl or costs spiraling.
Full install guides for Claude Desktop, Cursor, Windsurf, and more at CuratedMCP.
Top comments (0)