Skip to content

Brave Search MCP Server

An MCP implementation that integrates the Brave Search API, providing comprehensive search capabilities including web, local business, image, video, news searches, and AI-powered summarization.

342
GitHub Stars
MIT
License
37,656
Weekly Downloads
analyze.research.web_summarycreate.writing_language.summary#author:official#environment:network#hosting:remote-capable

Install Brave Search MCP Server in your MCP client

Brave Search MCP Server is a Model Context Protocol server. Add it to your MCP client config once, restart, and the server's tools become available to your AI assistant. The same JSON snippet below works across all four major clients — only the config file path differs.

  1. Locate your client's MCP config file.
    • Cursor: ~/.cursor/mcp.json
    • Claude Desktop (macOS): ~/Library/Application Support/Claude/claude_desktop_config.json
    • Claude Desktop (Windows): %APPDATA%\Claude\claude_desktop_config.json
    • VS Code: Settings → Extensions → MCP
    • Windsurf: Settings → MCP Servers
  2. Add Brave Search MCP Server to the mcpServers map — paste the snippet below into your config file. If you already have other MCP servers, merge the entry into the existing mcpServers object.
  3. Restart your client so it picks up the new server.
  4. Verify — ask the assistant to list available tools; Brave Search MCP Server's tools should appear.
{
  "mcpServers": {
    "brave-search-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@brave-search-mcp-server/mcp-server"
      ],
      "note": "Replace with the actual package name from the server's documentation.",
      "env": {
        "BRAVE_API_KEY": "<your-brave-api-key>"
      }
    }
  }
}

Install Brave Search MCP Server in Cursor

Open ~/.cursor/mcp.json in your editor, paste the snippet above into mcpServers, save, and restart Cursor. Brave Search MCP Server will show up in the assistant's tool list on next launch.

Install Brave Search MCP Server in Claude Desktop (macOS)

Open ~/Library/Application Support/Claude/claude_desktop_config.json in your editor, paste the snippet above into mcpServers, save, and restart Claude Desktop (macOS). Brave Search MCP Server will show up in the assistant's tool list on next launch.

Install Brave Search MCP Server in Claude Desktop (Windows)

Open %APPDATA%\Claude\claude_desktop_config.json in your editor, paste the snippet above into mcpServers, save, and restart Claude Desktop (Windows). Brave Search MCP Server will show up in the assistant's tool list on next launch.

Install Brave Search MCP Server in VS Code

Open Settings → Extensions → MCP in your editor, paste the snippet above into mcpServers, save, and restart VS Code. Brave Search MCP Server will show up in the assistant's tool list on next launch.

Tools exposed by Brave Search MCP Server

Once installed, Brave Search MCP Server exposes the following MCP tools to your AI assistant. Each tool can be called directly by the assistant whenever its capability is relevant to your prompt.

  • brave_web_search

    Performs comprehensive web searches with rich result types and advanced filtering options.

  • brave_local_search

    Searches for local businesses and places with detailed information including ratings, hours, and AI-generated descriptions.

  • brave_video_search

    Searches for videos with comprehensive metadata and thumbnail information.

  • brave_image_search

    Searches for images with automatic fetching and base64 encoding for direct display.

  • brave_news_search

    Searches for current news articles with freshness controls and breaking news indicators.

  • brave_summarizer

    Generates AI-powered summaries from web search results using Brave's summarization API.

Required environment variables

Brave Search MCP Server needs the following environment variables set before it can run. Add them to the env block of your mcpServers entry, or export them in your shell before launching the client.

  • BRAVE_API_KEY

Your Brave Search API key is required.

Transport

Brave Search MCP Server supports the following MCP transports. Most AI clients use stdio by default for locally-installed servers.

stdiohttp

Other Model Context Protocol servers in the same space as Brave Search MCP Server. Each one adds different capabilities to your AI assistant — pick based on the data sources or workflows you need.

Browse the full MCP server directory or use Stork's one-line install to let your agent pick the right server automatically.