TopRank Skills

Home / Claw Skills / Git / GitHub / brave-search-mcp
Official OpenClaw rules 36%

brave-search-mcp

Official Brave Search MCP Server for web search, image search, news search, video search, and local POI search. Privacy-focused search API with AI-powered summarization. Connect AI agents to comprehensive search capabilities without Google tracking. Supports web navigation, research, fact-checking, and content discovery. Use when agents need to search the internet, find current information, research topics, verify facts, discover images/videos, or locate businesses/places.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 brave-search-mcp 技能。 若已安装,则直接安装 brave-search-mcp 技能。

Overview

Skill Key
buddhasource/brave-search-mcp
Author
buddhasource
Source Repo
openclaw/skills
Version
-
Source Path
skills/buddhasource/brave-search-mcp
Latest Commit SHA
0700ffd3d8ac41faaf6531d65a11748a67d01b98

Extracted Content

SKILL.md excerpt

# Brave Search MCP Server

> **Privacy-First Search for AI Agents**

Official MCP server from Brave integrating the [Brave Search API](https://brave.com/search/api/). Provides comprehensive search capabilities including web, images, videos, news, and local points of interest with AI-powered summarization.

## Why Brave Search?

### 🔒 Privacy-Focused
No user tracking, no profiling, no search history surveillance. Unlike Google, Brave Search doesn't build profiles or track behavior.

### 🤖 AI-Native Features
- AI-powered summarization (summarizer tool)
- Structured data for agent consumption
- Rich context in search results

### 🌐 Comprehensive Coverage
- **Web Search** - General internet search
- **Image Search** - Visual content discovery
- **Video Search** - Video content from multiple platforms
- **News Search** - Current events and journalism
- **Local POI** - Businesses, restaurants, services near any location

## Installation

```bash
# Official Brave Search MCP Server
npm install -g @brave/brave-search-mcp-server

# Or via GitHub
git clone https://github.com/brave/brave-search-mcp-server
cd brave-search-mcp-server
npm install
npm run build
```

## Configuration

Add to your MCP client config:

```json
{
  "mcpServers": {
    "brave-search": {
      "command": "npx",
      "args": ["-y", "@brave/brave-search-mcp-server"],
      "env": {
        "BRAVE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
```

### Get API Key

1. Visit https://brave.com/search/api/
2. Sign up for Brave Search API
3. Free tier: 2,000 queries/month
4. Paid plans available for higher volume

## Available Tools

### 1. Web Search (`brave_web_search`)

General purpose internet search.

**Agent Usage:**
```
"Search for recent developments in quantum computing"
"Find tutorials on React hooks"
"What are the best practices for Docker security?"
```

**Parameters:**
- `query` (required) - Search terms
- `count` (optional) - Number of results (default 10, max 20)
- `offset` (optional) - Pag...

Related Claw Skills