经 AI Skill Hub 精选评估,勇敢搜索MCP 获评「强烈推荐」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
勇敢搜索MCP 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
勇敢搜索MCP 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/mikechao/brave-search-mcp
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"----mcp": {
"command": "npx",
"args": ["-y", "brave-search-mcp"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 勇敢搜索MCP 执行以下任务... Claude: [自动调用 勇敢搜索MCP MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"____mcp": {
"command": "npx",
"args": ["-y", "brave-search-mcp"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
An MCP Server implementation that integrates the Brave Search API, providing, Web Search, Local Points of Interest Search, Video Search, Image Search, News Search and LLM Context Search capabilities
<a href="https://glama.ai/mcp/servers/@mikechao/brave-search-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@mikechao/brave-search-mcp/badge" alt="Brave Search MCP server" /> </a>
The Brave Search MCP Server can be used with the web UI of ChatGPT. It takes a few steps.
Settings → Apps → Advanced settings → Developer mode
Additional instructions here
BRAVE_API_KEY="your_key_here" npx -y brave-search-mcp --http --ui
Sign up and configure ngrok, the free plan works.
ngrok http 3001
Take note of the forwarding URL.
...
Forwarding https://john-joe-asdf.ngrok-free.dev -> http://localhost:3001
...
Click Apps
Click Create Apps
Fill out the form using the URL from step 3 as the MCP Server URL, but add /mcp.
https://john-joe-asdf.ngrok-free.dev/mcp
For Authentication, select 'No Auth'
Tick the checkbox for 'I understand and want to continue'
Then click Create.
In the ChatGPT UI, click the '+' button, scroll to '...more', select the newly created Brave Search app, and enter your query.
For Claude Code users, run this command:
Windows:
claude mcp add-json brave-search '{"command":"cmd","args":["/c","npx","-y","brave-search-mcp"],"env":{"BRAVE_API_KEY":"YOUR_API_KEY_HERE"}}'
Linux/macOS:
claude mcp add-json brave-search '{"command":"npx","args":["-y","brave-search-mcp"],"env":{"BRAVE_API_KEY":"YOUR_API_KEY_HERE"}}'
Replace YOUR_API_KEY_HERE with your actual Brave Search API key.
1. Download the mcpb file from the Releases 2. Open it with Claude Desktop or Go to File -> Settings -> Extensions and drag the .mcpb file to the window to install it
docker build -t brave-search-mcp:latest -f apps/brave-search-mcp/Dockerfile .
docker run --rm -p 3001:3001 -e BRAVE_API_KEY="YOUR_API_KEY_HERE" brave-search-mcp:latest --http
claude_desktop_config.json for stdio mode:{
"mcp-servers": {
"brave-search": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"BRAVE_API_KEY",
"brave-search-mcp"
],
"env": {
"BRAVE_API_KEY": "YOUR API KEY HERE"
}
}
}
}
Add this to your claude_desktop_config.json:
{
"mcp-servers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"brave-search-mcp"
],
"env": {
"BRAVE_API_KEY": "YOUR API KEY HERE"
}
}
}
}
Add this to librechat.yaml
brave-search:
command: sh
args:
- -c
- BRAVE_API_KEY=API KEY npx -y brave-search-mcp
These settings are always read from the process environment, regardless of mode:
BRAVE_API_KEY (required): Brave Search API key.PORT (optional): HTTP port (default: 3001).HOST (optional): Interface to bind to (default: 0.0.0.0).BRAVE_MCP_CONFIG (optional): Absolute or relative path to a TOML config file for feature settings.When BRAVE_MCP_CONFIG is not set, these feature env vars are supported:
ALLOWED_HOSTS (HTTP mode only): Comma-separated list of allowed hostnames for Host header validation.ALLOWED_HOSTS=localhost,127.0.0.1,my-app.ngrok-free.appmy-app.ngrok-free.app not https://my-app.ngrok-free.app/mcpBRAVE_MCP_POLICY_FILE: JSON policy file path.BRAVE_MCP_POLICY_REDACT: true to redact matched text instead of blocking it.BRAVE_MCP_REQUEST_LIMIT: Positive integer request cap.BRAVE_MCP_WINDOW_SECONDS: Non-negative integer rolling window size.BRAVE_MCP_COOLDOWN_SECONDS: Non-negative integer cooldown after the limit is exceeded.BRAVE_MCP_AUDIT_LOG: true to emit audit logs.BRAVE_MCP_AUDIT_LOG_RAW: true to include raw query text in audit logs.BRAVE_MCP_REQUIRE_JUSTIFICATION: true to reject tool calls without a justification string.Examples:
```bash
When BRAVE_MCP_CONFIG is set, the file controls feature configuration, including the HTTP host allowlist.
[auth]
httpApiKey = "sk-..."
requireAuth = true
callerId = "team-a"
[auth.jwt]
jwksUri = "https://idp.example.com/.well-known/jwks.json"
audience = "brave-search-mcp"
clockSkewSeconds = 30
[auth.oauth]
issuer = "https://idp.example.com"
audience = "brave-search-mcp"
clientId = "client-123"
clientSecret = "super-secret"
verifyStrategy = "jwks"
[audit]
enabled = true
logRaw = false
hmacSecret = "audit-secret"
[policy]
file = "/etc/brave-mcp/policy.json"
redact = false
[guardrail]
requestLimit = 100
windowSeconds = 60
cooldownSeconds = 10
requireJustification = false
[server]
allowedHosts = [
"localhost",
"127.0.0.1",
"my-app.ngrok-free.app",
]
Notes:
BRAVE_API_KEY, PORT, and HOST remain environment-only even in file mode.BRAVE_MCP_REQUEST_LIMIT or ALLOWED_HOSTS alongside BRAVE_MCP_CONFIG, startup warns that they are being ignored.[guardrails] are visible before you debug runtime behavior.To validate a config file without starting the server, use the packaged entrypoint after building the app workspace:
pnpm -C apps/brave-search-mcp run build
node apps/brave-search-mcp/dist/index.js --check-config ./apps/brave-search-mcp/test/fixtures/config.valid.toml
To run the built local entrypoint in file mode:
pnpm -C apps/brave-search-mcp run build
BRAVE_API_KEY="your_key_here" BRAVE_MCP_CONFIG="$PWD/apps/brave-search-mcp/test/fixtures/config.valid.toml" node apps/brave-search-mcp/dist/index.js --http
高质量的MCP工具,集成Brave Search API
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ GPL 3.0 — 强 Copyleft,衍生作品须开源,含专利保护条款,不可闭源使用。
AI Skill Hub 点评:勇敢搜索MCP 的核心功能完整,质量优秀。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | brave-search-mcp |
| 原始描述 | 开源MCP工具:An MCP Server implementation that integrates the Brave Search API, providing, We。⭐117 · TypeScript |
| Topics | brave-searchimage-searchmcptypescript |
| GitHub | https://github.com/mikechao/brave-search-mcp |
| License | GPL-3.0 |
| 语言 | TypeScript |
收录时间:2026-05-25 · 更新时间:2026-05-30 · License:GPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端