モデルコンテキストプロトコル - Gemini Thinking Server
これは、Google の Gemini API と統合して、コードを生成せずに分析的思考機能を提供する Model Context Protocol (MCP) の実装です。
概要
Gemini Thinking Serverは、GoogleのGeminiモデルを活用し、シーケンシャル思考と問題解決能力を提供する専用のMCPサーバーです。以下の機能を提供します。
- 複雑な問題を段階的に分解する
- 修正の余地がある計画と設計
- 軌道修正が必要な分析
- 当初は全体の範囲が明確でない可能性がある問題
特徴
- ジェミニパワー思考:ジェミニの分析能力を活用して思慮深い応答を生成します
- メタ解説:推論プロセスに関する洞察を提供する
- 信頼度レベル: ジェミニの分析に対する信頼度を示します
- 代替パス:問題に対する異なるアプローチを提案する
- 思考の分岐:異なる思考経路の探索を可能にする
- 修正機能: 過去の考えの修正をサポート
- セッションの永続性: 分析セッションを保存して再開する
インストール
使用法
環境設定
サーバーを実行する前に、Gemini API キーを設定する必要があります。
サーバーの実行
ツールパラメータ
geminithinking
ツールは次のパラメータを受け入れます。
query
(必須): 分析する質問または問題context
(オプション): 追加のコンテキスト情報approach
(オプション):問題に対する提案されたアプローチpreviousThoughts
(オプション): コンテキストの以前の考えの配列thought
(オプション):現在の思考ステップ(空の場合は、Geminiによって生成されます)nextThoughtNeeded
(必須): 別の思考ステップが必要かどうかthoughtNumber
(必須): 現在の思考番号totalThoughts
(必須): 必要な推定総思考数isRevision
(オプション): 以前の考えを修正するかどうかrevisesThought
(オプション):どの考えが再考されているかbranchFromThought
(オプション): 分岐点の思考番号branchId
(オプション): ブランチ識別子needsMoreThoughts
(オプション): さらに考えが必要な場合
セッション管理
このツールは、セッション管理コマンドもサポートしています。
sessionCommand
: セッションを管理するためのコマンド ('save'、'load'、'getState')sessionPath
: セッションファイルを保存または読み込むパス('save'および'load'コマンドに必要)
例: セッションの保存
例: セッションの読み込み
例: セッション状態の取得
例
ツールの使用方法の例を次に示します。
応答フォーマット
サーバーは次のように応答します:
クライアントの例
さまざまなユースケースを示すために、いくつかのサンプル クライアントが提供されています。
sample-client.js
: 基本的なクライアントの例example-usage.js
: 具体的な使用例codebase-analysis-example.js
: コードベース分析の例session-example.js
: セッションの永続性を示す例advanced-filtering-example.js
: 高度なセマンティックフィルタリングを示す例
セッション例を実行するには:
高度なフィルタリングの例を実行するには:
ライセンス
マサチューセッツ工科大学
You must be authenticated.
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
Google の Gemini API を活用して、コード生成なしで順次思考ステップを通じて分析的な問題解決機能を提供する MCP サーバー実装。
Related Resources
Related MCP Servers
- AsecurityAlicenseAqualityThis server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.Last updated -390PythonMIT License
- AsecurityAlicenseAqualityAn adaptation of the MCP Sequential Thinking Server designed to guide tool usage in problem-solving. This server helps break down complex problems into manageable steps and provides recommendations for which MCP tools would be most effective at each stage.Last updated -1709155TypeScriptMIT License
- -security-license-qualityAn MCP server implementation that allows using Google's Gemini AI models (specifically Gemini 1.5 Pro) through Claude or other MCP clients via the Model Context Protocol.Last updated -1JavaScript
- AsecurityFlicenseAqualityAn MCP server that connects Gemini 2.5 Pro to Claude Code, enabling users to generate detailed implementation plans based on their codebase and receive feedback on code changes.Last updated -23Python