Home/Servers/Brave Search MCP Server

Brave Search MCP Server

by Brave ยท โญ 2.3k stars ยท updated 2 weeks ago

Web and local search using Brave's Search API. Get real-time web results, local business listings, and news โ€” all without tracking, directly in your AI workflow.

88
Very Good

Quality Score Breakdown

maintenance90/100
community86/100
documentation88/100
compatibility88/100

Use Cases

  • โœ“web search
  • โœ“local search
  • โœ“news search
  • โœ“privacy-first search

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "@brave/brave-search-mcp-server"
      ],
      "env": {
        "BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "@brave/brave-search-mcp-server"
      ],
      "env": {
        "BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "brave-search": {
        "command": "npx",
        "args": [
          "-y",
          "@brave/brave-search-mcp-server"
        ],
        "env": {
          "BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
        }
      }
    }
  }
}
โ† Back to all servers