# Brave Search MCP Server
> Package: `@modelcontextprotocol/server-brave-search`
> Tools Exposed: brave_web_search, brave_local_search
> URL: https://agentnow.in/mcp/brave-search-mcp-server

## Description
Real-time web search integration for Claude Desktop and Cursor agents with zero privacy tracking.

## Installation CLI
```bash
npx -y @modelcontextprotocol/server-brave-search
```

## Claude Desktop Configuration (claude_desktop_config.json)
```json
{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-brave-search"
      ],
      "env": {
        "BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
      }
    }
  }
}
```

## Cursor Configuration (.cursor/mcp.json)
```json
{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-brave-search"
      ],
      "env": {
        "BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
      }
    }
  }
}
```
