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-すべてのパラメータを設定する
Related MCP server: SearXNG Model Context Protocol Server
使用法
Smithery経由でインストール
Smithery経由で Claude Desktop 用の Serper MCP Server を自動的にインストールするには:
npx -y @smithery/cli install @garylab/serper-mcp-server --client claudeuvの使用(推奨)
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インストールの場合:
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 ファイルをご覧ください。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
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/garylab/serper-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
