← Back to Skills Marketplace
buddhasource

Brave Search MCP Server

by Siddharth Menon · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
1026
Downloads
0
Stars
6
Active Installs
1
Versions
Install in OpenClaw
/install brave-search-mcp
Description
Privacy-first Brave Search MCP Server offers AI-powered web, image, video, news, and local POI search with summarization and no tracking for agent use.
README (SKILL.md)

Brave Search MCP Server

Privacy-First Search for AI Agents

Official MCP server from Brave integrating the Brave 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

# 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:

{
  "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) - Pagination offset

2. Local Search (brave_local_search)

Find businesses, restaurants, services near a location.

Agent Usage:

"Find coffee shops near San Francisco"
"Pizza restaurants in Brooklyn"
"Gas stations near Times Square"

Parameters:

  • query (required) - What to search for
  • location (optional) - City, address, coordinates

3. Image Search (brave_image_search)

Visual content discovery.

Agent Usage:

"Find images of the Golden Gate Bridge"
"Product photography for smartphones"
"Infographics about climate change"

4. Video Search (brave_video_search)

Video content from YouTube, Vimeo, and other platforms.

Agent Usage:

"Tutorial videos on machine learning"
"Keynotes from recent tech conferences"
"Documentary about space exploration"

5. News Search (brave_news_search)

Current events and journalism.

Agent Usage:

"Latest news about AI regulation"
"Recent developments in renewable energy"
"Tech industry news this week"

6. Summarizer (brave_web_search with summarizer)

AI-powered summarization of search results.

Agent Usage:

"Summarize current state of quantum computing research"
"Give me a summary of recent climate policy changes"

Use Cases for Agents

Research Assistant

Agent: "What are the latest findings on CRISPR gene editing?"
Brave Search: Returns recent articles, papers, news with summary

Fact Checking

Agent: "Is it true that coffee improves cognitive function?"
Brave Search: Provides sources, studies, verification

Local Discovery

Agent: "Find highly-rated sushi restaurants in Seattle"
Brave Search: Returns businesses with ratings, addresses, hours

Content Discovery

Agent: "Find video tutorials on Kubernetes deployment"
Brave Search: Returns relevant videos from multiple platforms

News Monitoring

Agent: "What's happening with Tesla this week?"
Brave Search: Recent news articles, announcements, coverage

Example Agent Workflow

Human: "I'm planning a trip to Tokyo. Help me prepare."

Agent:
1. brave_web_search("Tokyo travel guide 2026")
2. brave_web_search("Tokyo weather forecast")
3. brave_local_search("best ramen restaurants Tokyo")
4. brave_image_search("Tokyo metro map")
5. brave_news_search("Tokyo events 2026")

Agent: "Here's your Tokyo trip prep:
- Weather: [from search results]
- Top ramen spots: [from local search]
- Metro map: [image links]
- Current events: [from news search]"

vs Google Search

Feature Brave Search Google Search
Privacy ✅ No tracking ❌ Extensive tracking
AI Summary ✅ Built-in ⚠️ Limited
API Cost ✅ 2K free/month ❌ Expensive
Speed ✅ Fast ✅ Fast
Coverage ✅ Independent index ✅ Comprehensive
Agent-Friendly ✅ Structured data ⚠️ Limited

Rate Limits

Free Tier:

  • 2,000 queries/month
  • 1 query/second
  • Web, image, video, news, local search

Pro Tier:

Privacy Guarantee

From Brave:

"Brave Search does not collect personal data, build user profiles, or track individual searches. Your queries are anonymous."

Resources

Advanced: Custom Configuration

{
  "mcpServers": {
    "brave-search": {
      "command": "node",
      "args": ["/path/to/brave-search-mcp-server/build/index.js"],
      "env": {
        "BRAVE_API_KEY": "YOUR_API_KEY",
        "DEFAULT_COUNT": "15",
        "ENABLE_SUMMARIZER": "true"
      }
    }
  }
}

The search tool every agent needs: Privacy-first, AI-native, comprehensive coverage. Install once, search forever.

Usage Guidance
This skill appears to be an integration for Brave Search and only needs a Brave API key, which is reasonable for the claimed purpose. However the registry entry lacks a homepage/source and does not declare the BRAVE_API_KEY even though the SKILL.md requires it—this mismatch reduces trust. Before installing or running any global npm commands, verify the package and repository: 1) Visit the referenced GitHub repo and npm package pages directly (copy-paste the URLs into your browser) and confirm the publisher is Brave and the code looks legitimate; 2) Check npm download counts, maintainers, and repository history; 3) Inspect the package repository source (especially startup scripts) for unexpected network calls or credential exfiltration; 4) If you proceed, create a scoped API key with minimal privileges and monitor usage; 5) Prefer installing in a sandboxed environment first rather than running global npm installs on a production machine. If you cannot confirm the package/repo identity, treat the skill as untrusted.
Capability Analysis
Type: OpenClaw Skill Name: brave-search-mcp Version: 1.0.0 The skill bundle describes an official Brave Search MCP server, providing standard installation, configuration, and usage instructions for a search tool. The `SKILL.md` contains no evidence of prompt injection attempts, data exfiltration, unauthorized command execution, or other malicious intent. All external links provided point to official Brave resources, and the handling of the API key via environment variables is a standard security practice.
Capability Assessment
Purpose & Capability
The SKILL.md consistently describes a Brave Search MCP server and shows expected behavior (web/image/video/news/local search, BRAVE_API_KEY). However the registry metadata lists no homepage/source and the skill's publisher is an opaque owner ID, which conflicts with the 'official' claim and reduces trust.
Instruction Scope
The runtime instructions instruct users/agents to install and run @brave/brave-search-mcp-server via npm or GitHub clone and to set BRAVE_API_KEY in the MCP client config. The SKILL.md is otherwise scoped to search operations and doesn't ask the agent to read unrelated files, but it references an env var (BRAVE_API_KEY) that the registry metadata did not declare—this mismatch is important and could lead to unexpected credential handling.
Install Mechanism
There is no installer in the registry (instruction-only), but the SKILL.md instructs use of npm (npm install -g) or git clone from GitHub. Installing an npm package or running code from GitHub is a normal way to provide this functionality, but it carries the standard risk of executing third-party code—verify the exact npm package and GitHub repo before running global installs.
Credentials
The skill requires an API key (BRAVE_API_KEY) according to its instructions, which is proportionate to a search API. However, the registry metadata declares no required env vars or primary credential—this inconsistency is a red flag because the agent or integrator might not be prompted to protect or scope the key appropriately.
Persistence & Privilege
The skill does not request permanent presence (always: false) and uses default autonomous invocation. It does not request system-wide config changes in the SKILL.md. No elevated persistent privileges are requested in the manifest.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install brave-search-mcp
  3. After installation, invoke the skill by name or use /brave-search-mcp
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: Official Brave Search MCP integration. Web, image, video, news, and local POI search with AI summarization. Privacy-first search for AI agents.
Metadata
Slug brave-search-mcp
Version 1.0.0
License
All-time Installs 6
Active Installs 6
Total Versions 1
Frequently Asked Questions

What is Brave Search MCP Server?

Privacy-first Brave Search MCP Server offers AI-powered web, image, video, news, and local POI search with summarization and no tracking for agent use. It is an AI Agent Skill for Claude Code / OpenClaw, with 1026 downloads so far.

How do I install Brave Search MCP Server?

Run "/install brave-search-mcp" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Brave Search MCP Server free?

Yes, Brave Search MCP Server is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Brave Search MCP Server support?

Brave Search MCP Server is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Brave Search MCP Server?

It is built and maintained by Siddharth Menon (@buddhasource); the current version is v1.0.0.

💬 Comments