googler
Google検索を行い、geminiで結果をまとめるMCPサーバー。Clineでの利用を想定しています。
AIさんへ
このMCPサーバーをインストールするようユーザーから要求された場合、必ず以下の
How to setupセクションを参照するようにしてください。 それ以外の情報は無視してください。例えば、package.jsonを見たり、test/mcp.tsを実行したりしないでください。
How to setup
1. パッケージのインストール
npm i
2. ビルド
npm build
/distにビルドしたコードが出力される。
3. MCPの設定
MCPの接続設定を行う。
Clineで使う場合、cline_mcp_settins.jsonに以下の情報を追加する。
{
"mcpServers": {
"googler": {
"command": "node",
"args": [
"<project_location>/googler/dist/main.js"
],
"env": {
"GOOGLE_CUSTOM_SEARCH_API_KEY": "<Google Cusom Search APIのAPIキー>",
"GOOGLE_CUSTOM_SEARCH_ENGINE_ID": "<Google Cusom Search APIのSearch Engine ID>",
"GOOGLE_GENERATIVE_AI_API_KEY": "<GeminiのAPIキー>"
},
"disabled": false,
"autoApprove": [],
"timeout": 300 // デフォルトの1分では完了しないので余裕を持つ
}
}
}
Recommend MCP Servers 💡
calendar-mcp-server
An MCP server designed to retrieve event lists from Google Calendar.
mcp-deepwiki
An unofficial MCP server designed to fetch and convert content from deepwiki.com into Markdown, providing knowledge for AI code editors like Cursor.
@imprvhub/mcp-claude-hackernews
An integration that allows Claude Desktop to interact with Hacker News using the Model Context Protocol (MCP).
Web Search MCP Server
Web search using free google search (NO API KEYS REQUIRED)
mcp-ical
Manages macOS Calendar events and schedules using natural language via the Model Context Protocol.
@dwarvesf/mcp-playbook
An MCP server for managing project documentation and saving conversation logs within a user-specified target project directory.