Skip to main content
Glama
by garylab

Serper MCP サーバー

鍛冶屋のバッジ

Serper経由でGoogle検索を提供するモデルコンテキストプロトコルサーバー。このサーバーにより、LLMはGoogleから検索結果情報を取得できます。

利用可能なツール

使用法

Smithery経由でインストール

Smithery経由で Claude Desktop 用の Serper MCP Server を自動的にインストールするには:

npx -y @smithery/cli install @garylab/serper-mcp-server --client claude

uvの使用(推奨)

  1. OS システムにuvがインストールされていることを確認してください。

  2. MCP クライアント コード構成またはClaude設定 (ファイルclaude_desktop_config.json ) に、 serper mcp サーバーを追加します。

    { "mcpServers": { "serper": { "command": "uvx", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }

    uvpypi.orgからuvxを使用して mcp サーバーを自動的にダウンロードし、MCP クライアントに適用します。

プロジェクトにpipを使用する

  1. MCP クライアント コードのrequirements.txtファイルにserper-mcp-server追加します。

    serper-mcp-server
  2. 依存関係をインストールします。

    pip install -r requirements.txt
  3. クライアントの設定を追加します:

    { "mcpServers": { "serper": { "command": "python3", "args": ["-m", "serper_mcp_server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }

グローバル使用のためにpipを使用する

  1. pipまたはpip3 OS システム内にあることを確認してください。

    pip install serper-mcp-server # or pip3 install serper-mcp-server
  2. MCP クライアント コード構成またはClaude設定、 serper mcp サーバーを追加します。

    { "mcpServers": { "serper": { "command": "python3", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }

デバッグ

uvxインスペクタを使用してサーバーをデバッグできます。UVXインストールの場合:

npx @modelcontextprotocol/inspector uvx serper-mcp-server

または、パッケージを特定のディレクトリにインストールした場合や、そのディレクトリで開発している場合は、次のようにします。

cd path/to/servers/src/serper npx @modelcontextprotocol/inspector uv run serper-mcp-server -e SERPER_API_KEY=<the key>

ライセンス

serper-mcp-server は MIT ライセンスに基づきライセンスされています。つまり、MIT ライセンスの条件に従って、ソフトウェアを自由に使用、改変、配布することができます。詳細については、プロジェクトリポジトリの LICENSE ファイルをご覧ください。

Related MCP Servers

  • A
    security
    A
    license
    A
    quality
    A Model Context Protocol server that enables LLMs to perform web searches using Google's Custom Search API through a standardized interface.
    Last updated -
    37
    MIT License
  • A
    security
    -
    license
    A
    quality
    A Model Context Protocol server that provides web search capabilities using Google Custom Search API and webpage content extraction functionality.
    Last updated -
    2
    4
    1
    • Apple
  • A
    security
    A
    license
    A
    quality
    A Model Context Protocol server that enables LLM clients like VSCode, Copilot, and Claude Desktop to search the web using Google Programmable Search Engine API.
    Last updated -
    1
    20
    7
    Apache 2.0
    • Apple
  • -
    security
    -
    license
    -
    quality
    A Model Context Protocol server that enables LLMs to perform web searches using Google's Gemini API and return synthesized responses with citations.
    Last updated -
    47
    MIT License

View all related MCP servers

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/garylab/serper-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server