Token导航 LogoToken导航TokenDH.com
研究检索敏感数据unknown未标认证来源可访问许可证需确认审计未展示

brave-search-mcpbrave 搜索 MCP

Agent Skill

brave-search-mcp 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

727

周安装

30

下载量

238
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:brave-search-mcp(brave 搜索 MCP)
来源仓库:https://skills.volces.com
仓库路径:brave-search-mcp
安装命令:
# Official Brave Search MCP Server
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 对应宿主 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.sh安装方式未标明
# Official Brave Search MCP Server

简介

brave-search-mcp 用于查找、检索和筛选相关信息,支持通过 MCP 协议调用 Brave Search。

  • 它适合在 Local Agent 中快速定位关键词相关的网络内容。
  • 使用时需参考官方文档了解认证方式和调用限制。
  • 安装前应确认是否会消耗外部 API 配额或产生费用。
  • 建议测试搜索效果后再集成到生产流程中。

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

FeatureBrave SearchGoogle 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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

81.25%
按下载量换算193

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills