Brave Search MCP Server

Brave Search MCP server provides privacy-focused web search capabilities including web, local, image, video, and news search with AI-powered summarization.

May 4, 2025
GitHub starsnpm version

Overview

The Brave Search MCP Server integrates Brave's independent search index into AI assistants via the Model Context Protocol. Brave Search provides privacy-respecting web search without tracking users, making it ideal for AI applications where data privacy matters.

Official MCP Server:

Part of the official Model Context Protocol servers collection

Key Features

🦁

Independent Search Index

Brave maintains its own search index, not reliant on Google or Bing

🔒

Privacy-Focused

No user tracking, profiling, or personal data collection

🌐

Web & Local Search

Global web search plus local business and place search

🖼️

Image & Video Search

Search for images and videos with content filtering options

📰

News Search

Access recent news articles with freshness filtering

🤖

AI Summarization

Built-in AI-powered summarization of search results

Available Tools

Quick Reference

ToolPurposeCategory
brave_web_searchGeneral web search with Brave's indexSearch
brave_local_searchSearch for local businesses and placesLocal
brave_image_searchSearch for imagesMedia
brave_video_searchSearch for videosMedia
brave_news_searchSearch recent news articlesNews

Detailed Usage

brave_web_search

Perform a general web search with configurable result count and content filtering.

{
  "query": "WebAssembly performance benchmarks 2025",
  "count": 10,
  "offset": 0
}
brave_local_search

Search for local businesses and places with location-specific results.

{
  "query": "vegan restaurants",
  "location": "San Francisco, CA",
  "count": 5
}
brave_image_search

Search for images with size, color, and license type filtering.

{
  "query": "solarpunk architecture concept art",
  "count": 10,
  "safesearch": "strict"
}
brave_news_search

Search for recent news articles with freshness filtering.

{
  "query": "AI regulation policy",
  "count": 10,
  "freshness": "pw"
}

Installation

{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "@anthropic-ai/mcp-server-brave-search"
      ],
      "env": {
        "BRAVE_API_KEY": "your_brave_api_key"
      }
    }
  }
}

API Key Required:

Get a free Brave Search API key from brave.com/search/api

Sources