Skip to main content
Glama
modelcontextprotocol

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キーの取得

  1. Brave Search APIアカウントにサインアップする

  2. プランを選択してください(無料プランは月間2,000クエリまでご利用いただけます)

  3. 開発者ダッシュボードから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でNPXを使ってインストールする VS Code Insiders で NPX を使用してインストールする

VS CodeでDockerを使ってインストールする VS Code Insiders で Docker を使用してインストールする

手動でインストールする場合は、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ファイルをご覧ください。

-
license - not tested
Not graded
quality - not tested
A
maintenance

Maintenance

UpdatingMaintainers
UpdatingResponse time
7wRelease cycle
8Releases (12mo)
Commit activity
Issues opened vs closed

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

  • A
    license
    A
    quality
    C
    maintenance
    The 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.
    1
    78
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    An MCP server that integrates the Brave Search API to provide both web and local search capabilities, with features like pagination, filtering, and smart fallbacks.
    16
    MIT

View all related MCP servers

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)

View all MCP Connectors

Latest Blog Posts

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