Brave Search MCP
このサーバーについて
Brave 公式の MCP サーバー。Brave Search API を用いて、エージェントにプライバシー重視のリアルタイム Web 検索を提供します。独自インデックスによるウェブ・ニュース・画像・動画・ローカル店舗の検索で、大手検索のトラッキングを回避します。
インストール
npx -y @brave/brave-search-mcp-server公式 README インストールガイド(英語原文)
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
Docker
{
"mcpServers": {
"brave-search": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "BRAVE_API_KEY", "docker.io/mcp/brave-search"],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}NPX
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@brave/brave-search-mcp-server", "--transport", "http"],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}Usage with VS Code
For quick installation, use the one-click installation buttons below:
 
 
For manual installation, add the following to your User Settings (JSON) or .vscode/mcp.json:
Docker
{
"inputs": [
{
"password": true,
"id": "brave-api-key",
"type": "promptString",
"description": "Brave Search API Key",
}
],
"servers": {
"brave-search": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "BRAVE_API_KEY", "mcp/brave-search"],
"env": {
"BRAVE_API_KEY": "${input:brave-api-key}"
}
}
}
}NPX
{
"inputs": [
{
"password": true,
"id": "brave-api-key",
"type": "promptString",
"description": "Brave Search API Key",
}
],
"servers": {
"brave-search-mcp-server": {
"command": "npx",
"args": ["-y", "@brave/brave-search-mcp-server", "--transport", "stdio"],
"env": {
"BRAVE_API_KEY": "${input:brave-api-key}"
}
}
}
}よくある質問
Brave Search MCP と Exa MCP はどう違いますか?
Brave はプライバシー重視の汎用検索(ウェブ・ニュース・画像・動画・ローカル店舗)を独自の独立インデックスから提供し、ユーザーを追跡しません。Exa は AI 向けに最適化されたニューラル検索で、LLM 向けの本文を返します。汎用検索とプライバシーなら Brave、構造化された調査結果なら Exa と、両者は補完的です。
Brave Search MCP のインストール方法は?API キーは必要ですか?
npx -y @brave/brave-search-mcp-server を実行し、環境変数に BRAVE_API_KEY を設定します。キーは Brave Search API の公式サイトで登録して取得します。無料層には毎月の枠があり、個人や軽量な統合には十分です。
Brave Search MCP は無料ですか?
MCP サーバーはオープンソースで無料(MIT)です。検索機能は Brave Search API が提供し、無料層(毎月の無料枠付き)があり、超過分は従量課金です。個人や小規模の統合は通常無料枠内に収まります。