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

                    • A
                      security
                      F
                      license
                      A
                      quality
                      A Model Context Protocol server that connects Claude and other AI assistants to your Notion workspace, allowing AIs to interact with databases, pages, and blocks.
                      Last updated -
                      12
                      64
                      10
                      JavaScript
                      • 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
                      F
                      license
                      -
                      quality
                      A Model Context Protocol server that connects AI assistants like Claude to Notion workspaces, enabling them to view, search, create, and update Notion databases, pages, and content blocks.
                      Last updated -
                      275
                      JavaScript
                      • Apple
                    • -
                      security
                      A
                      license
                      -
                      quality
                      A Model Context Protocol server that enables AI assistants like Claude to interact with Jira, allowing for project management tasks such as listing projects, searching issues, creating tickets, and managing sprints through natural language queries.
                      Last updated -
                      12
                      1
                      TypeScript
                      MIT License
                      • Linux
                      • 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