Skip to main content
Glama

MCP Think

by ddkang1

MCPシンク

Claude や他の LLM の複雑な推論機能を向上させるための「think」ツールを実装するモデル コンテキスト プロトコル (MCP) サーバー。

概要

このMCPサーバーは、Anthropicのブログ記事で説明されている「think」ツールを実装しており、複雑な問題解決タスクにおいて構造化された思考のための専用スペースをClaudeに提供します。thinkツールは、長いツール呼び出しの連鎖においてポリシーの遵守と推論を必要とする複雑なタスクにおいて、パフォーマンスを大幅に向上させることが実証されています。

特徴

  • 構造化された思考空間: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 stdio

SSE トランスポートのホストとポートを指定することもできます。

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ファイルを参照してください。

-
security - not tested
A
license - permissive license
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

複雑な問題解決タスク中に、Claude のような AI アシスタントに構造化された思考のための専用スペースを提供するモデル コンテキスト プロトコル サーバー。

  1. 概要
    1. 特徴
      1. インストール
        1. 使用法
          1. 構成
            1. 利用可能なツール
              1. 発達
                1. 開発のためのインストール
                2. テストの実行
                3. コードスタイル
              2. 貢献
                1. 変更履歴
                  1. ライセンス

                    Related MCP Servers

                    • -
                      security
                      F
                      license
                      -
                      quality
                      A comprehensive suite of Model Context Protocol servers designed to extend AI agent Claude's capabilities with integrations for knowledge management, reasoning, advanced search, news access, and workspace tools.
                      Last updated -
                      5
                      TypeScript
                      • Apple
                    • -
                      security
                      F
                      license
                      -
                      quality
                      A Model Context Protocol server that enables AI assistants like Claude to perform Python development tasks through file operations, code analysis, project management, and safe code execution.
                      Last updated -
                      1
                      Python
                      • Linux
                      • Apple
                    • -
                      security
                      A
                      license
                      -
                      quality
                      A Model Context Protocol server that enables AI assistants like Claude to interact directly with Home Assistant, allowing them to query device states, control smart home entities, and perform automation tasks.
                      Last updated -
                      104
                      Python
                      MIT License
                      • Apple
                      • Linux
                    • A
                      security
                      A
                      license
                      A
                      quality
                      A Model Context Protocol server that provides Claude with a dedicated space for structured thinking during complex problem-solving tasks, helping improve its reasoning capabilities.
                      Last updated -
                      3
                      46
                      3
                      TypeScript
                      MIT License
                      • Apple

                    View all related MCP servers

                    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/ddkang1/mcp-think'

                    If you have feedback or need assistance with the MCP directory API, please join our Discord server