Serper MCP サーバー
Serper経由でGoogle検索を提供するモデルコンテキストプロトコルサーバー。このサーバーにより、LLMはGoogleから検索結果情報を取得できます。
利用可能なツール
google_search-すべてのパラメータを設定するgoogle_search_images-すべてのパラメータを設定するgoogle_search_videos-すべてのパラメータを設定するgoogle_search_places-すべてのパラメータを設定するgoogle_search_maps-すべてのパラメータを設定するgoogle_search_reviews-すべてのパラメータを設定するgoogle_search_news-すべてのパラメータを設定するgoogle_search_shopping-すべてのパラメータを設定するgoogle_search_lens-すべてのパラメータを設定するgoogle_search_scholar-すべてのパラメータを設定するgoogle_search_parents-すべてのパラメータを設定するgoogle_search_autocomplete-すべてのパラメータを設定するwebpage_scrape-すべてのパラメータを設定する
使用法
Smithery経由でインストール
Smithery経由で Claude Desktop 用の Serper MCP Server を自動的にインストールするには:
uvの使用(推奨)
OS システムに
uvがインストールされていることを確認してください。MCP クライアント コード構成またはClaude設定 (ファイル
claude_desktop_config.json) に、serpermcp サーバーを追加します。{ "mcpServers": { "serper": { "command": "uvx", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }uvはpypi.orgからuvxを使用して mcp サーバーを自動的にダウンロードし、MCP クライアントに適用します。
プロジェクトにpipを使用する
MCP クライアント コードの
requirements.txtファイルにserper-mcp-server追加します。serper-mcp-server依存関係をインストールします。
pip install -r requirements.txtクライアントの設定を追加します:
{ "mcpServers": { "serper": { "command": "python3", "args": ["-m", "serper_mcp_server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }
グローバル使用のためにpipを使用する
pipまたはpip3OS システム内にあることを確認してください。pip install serper-mcp-server # or pip3 install serper-mcp-serverMCP クライアント コード構成またはClaude設定、
serpermcp サーバーを追加します。{ "mcpServers": { "serper": { "command": "python3", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }
デバッグ
uvxインスペクタを使用してサーバーをデバッグできます。UVXインストールの場合:
または、パッケージを特定のディレクトリにインストールした場合や、そのディレクトリで開発している場合は、次のようにします。
ライセンス
serper-mcp-server は MIT ライセンスに基づきライセンスされています。つまり、MIT ライセンスの条件に従って、ソフトウェアを自由に使用、改変、配布することができます。詳細については、プロジェクトリポジトリの LICENSE ファイルをご覧ください。
Related MCP Servers
- AsecurityAlicenseAqualityA Model Context Protocol server that enables LLMs to perform web searches using Google's Custom Search API through a standardized interface.Last updated -37MIT License
- Asecurity-licenseAqualityA Model Context Protocol server that provides web search capabilities using Google Custom Search API and webpage content extraction functionality.Last updated -241
- AsecurityAlicenseAqualityA 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 -1207Apache 2.0
- -security-license-qualityA Model Context Protocol server that enables LLMs to perform web searches using Google's Gemini API and return synthesized responses with citations.Last updated -47MIT License