Skip to main content
Glama

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

A
license - permissive license
Not graded
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    A 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.
    11
    6
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    An 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.
    1
    12
    MIT

View all related MCP servers

Related MCP Connectors

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • 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.

View all MCP Connectors

Latest Blog Posts

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