MCP Think
MCPシンク
Claude や他の LLM の複雑な推論機能を向上させるための「think」ツールを実装するモデル コンテキスト プロトコル (MCP) サーバー。
概要
このMCPサーバーは、Anthropicのブログ記事で説明されている「think」ツールを実装しており、複雑な問題解決タスクにおいて構造化された思考のための専用スペースをClaudeに提供します。thinkツールは、長いツール呼び出しの連鎖においてポリシーの遵守と推論を必要とする複雑なタスクにおいて、パフォーマンスを大幅に向上させることが実証されています。
Related MCP server: LLM Responses MCP Server
特徴
構造化された思考空間:LLMに複雑な問題を分解するための専用の場所を提供します
思考履歴: タイムスタンプ付きのすべての思考のログを参照用に保持します
複数のトランスポートのサポート: stdio と SSE トランスポートの両方で動作します
インストール
PyPIからインストール:
pip install mcp-thinkまたはソースからインストールします:
git clone https://github.com/ddkang1/mcp-think.git
cd mcp-think
pip install -e .使用法
MCP サーバーを直接実行できます。
mcp-thinkデフォルトではSSEトランスポートを使用します。stdioトランスポートを使用するには:
mcp-think --transport stdioSSE トランスポートのホストとポートを指定することもできます。
mcp-think --host 0.0.0.0 --port 3001構成
Windsurf の Claude でこのツールを使用するには、MCP 構成ファイルに次の構成を追加します。
"think": {
"command": "/home/xxx/.local/bin/mcp-think",
"args": ["--transport", "stdio"],
"type": "stdio",
"pollingInterval": 30000,
"startupTimeout": 30000,
"restartOnFailure": true
}SSE トランスポートの場合 (デフォルト):
"think": {
"command": "/home/xxx/.local/bin/mcp-think",
"args": [],
"type": "sse",
"pollingInterval": 30000,
"startupTimeout": 30000,
"restartOnFailure": true
}commandフィールドは、pip を使用して Python パッケージをインストールしたディレクトリを指す必要があります。
利用可能なツール
MCP サーバーは次のツールを提供します。
think : タイムスタンプ付きで考えを記録する
発達
開発のためのインストール
git clone https://github.com/ddkang1/mcp-think.git
cd mcp-think
pip install -e ".[dev]"テストの実行
pytestコードスタイル
このプロジェクトでは、フォーマットに Black、インポートのソートに isort、リンティングに flake8 を使用します。
black src tests
isort src tests
flake8 src tests貢献
貢献を歓迎します!詳細はCONTRIBUTING.mdをご覧ください。
変更履歴
このプロジェクトの変更履歴については、 CHANGELOG.md を参照してください。
ライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。
This server cannot be deployed
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for building and testing AI agents with multi-model experimentation and insights.
A Model Context Protocol server for Wix AI tools
MCP server for AI agent profiles and smart notes. 60+ coding prompt packs with expert personas.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server for Claude Desktop that provides structured memory management across chat sessions, allowing Claude to maintain context and build a knowledge base within project directories.6 npm6MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables collaborative debates between multiple AI agents, allowing them to discuss and reach consensus on user prompts.1MIT
- AlicenseAqualityCmaintenanceA Model Context Protocol server that provides Claude with a dedicated space for structured thinking during complex problem-solving tasks, helping improve its reasoning capabilities.147 npm16MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables Claude to break down complex problems into manageable steps with support for revision and branching, facilitating dynamic and reflective problem-solving through a structured thinking process.12 npmMIT