Brave Search MCP Server
Brave Search MCP サーバー
Brave Search API を統合し、Web 検索機能とローカル検索機能の両方を提供する MCP サーバー実装。
特徴
ウェブ検索: 一般的なクエリ、ニュース、記事、ページ区切りと鮮度コントロール付き
ローカル検索: 詳細な情報でビジネス、レストラン、サービスを検索
柔軟なフィルタリング: 結果の種類、安全レベル、コンテンツの鮮度を制御
スマートフォールバック: ローカル検索では、結果が見つからない場合は自動的にウェブにフォールバックします。
Related MCP server: Search MCP Server
ツール
勇敢なウェブ検索
ページネーションとフィルタリングを使用してウェブ検索を実行する
入力:
query(文字列): 検索用語count(数値、オプション): 1ページあたりの結果数(最大20件)offset(数値、オプション):ページ区切りのオフセット(最大9)
勇敢なローカル検索
地元のビジネスやサービスを検索する
入力:
query(文字列):ローカル検索用語count(数値、オプション): 結果の数(最大20)
ローカル検索結果が見つからない場合は自動的にウェブ検索に戻ります
構成
APIキーの取得
Brave Search APIアカウントにサインアップする
プランを選択してください(無料プランは月間2,000クエリまでご利用いただけます)
開発者ダッシュボードからAPIキーを生成する
Claude Desktopでの使用
これをclaude_desktop_config.jsonに追加します:
ドッカー
{
"mcpServers": {
"brave-search": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"BRAVE_API_KEY",
"mcp/brave-search"
],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}NPX
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-brave-search"
],
"env": {
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}VS Codeでの使用
素早くインストールするには、以下のワンクリック インストール ボタンを使用してください...
手動でインストールする場合は、VS Code のユーザー設定 (JSON) ファイルに次の JSON ブロックを追加します。Ctrl Ctrl + Shift + Pを押してPreferences: Open User Settings (JSON)と入力すると、このブロックを追加できます。
オプションとして、ワークスペース内の.vscode/mcp.jsonというファイルに追加することもできます。これにより、他のユーザーと設定を共有できるようになります。
.vscode/mcp.jsonファイルではmcpキーは必要ないことに注意してください。
ドッカー
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "brave_api_key",
"description": "Brave Search API Key",
"password": true
}
],
"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
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "brave_api_key",
"description": "Brave Search API Key",
"password": true
}
],
"servers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "${input:brave_api_key}"
}
}
}
}
}建てる
Dockerビルド:
docker build -t mcp/brave-search:latest -f src/brave-search/Dockerfile .ライセンス
このMCPサーバーはMITライセンスに基づいてライセンスされています。つまり、MITライセンスの条件に従って、ソフトウェアを自由に使用、改変、配布することができます。詳細については、プロジェクトリポジトリのLICENSEファイルをご覧ください。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceA server based on the MCP protocol that uses the Brave API for web search functionality.62MIT
- AlicenseAqualityCmaintenanceThe Search MCP Server enables seamless integration of network and local search capabilities in tools like Claude Desktop and Cursor, utilizing the Brave Search API for high-concurrency and asynchronous requests.178MIT
- AlicenseBqualityFmaintenanceAn MCP server that enables users to fetch Python documentation using the Brave Search API through natural language queries.1Apache 2.0
- AlicenseNot gradedqualityFmaintenanceAn MCP server that integrates the Brave Search API to provide both web and local search capabilities, with features like pagination, filtering, and smart fallbacks.16MIT
Related MCP Connectors
Serper MCP — wraps the Serper Google Search API (serper.dev)
An MCP server that gives your AI access to the source code and docs of all public github repos
Brave Search MCP — independent web index (no Google/Bing dependency)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/modelcontextprotocol/brave-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server