Think Tool MCP Server

by PhillipRt
Verified

hybrid server

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

シンクツールMCPサーバー

MCP サーバーとしての Anthropic の「think」ツールの公式実装- 構造化された思考により Claude の推論能力が劇的に向上します。

シンクツールとは何ですか?

このMCPサーバーは、Anthropicがエンジニアリングブログ記事で紹介した「思考」ツールをそのまま実装しています。この思考ツールは、複雑な問題解決タスクにおいて、クロードに構造化された推論のための専用スペースを提供し、より思慮深く、正確で、信頼性の高い回答を可能にします。

実証済みのパフォーマンスメリット

Anthropic の調査では、「think」ツールを使用すると顕著な改善が見られることが示されています。

  • 複雑な顧客サービス業務が54%改善
  • 詳細なポリシーとガイドラインの遵守が大幅に向上
  • 同じタスクの複数の試行間の一貫性の向上
  • ソフトウェアエンジニアリングベンチマークにおけるパフォーマンスの向上
  • 他の拡張技術と比較して実装オーバーヘッドが最小限

「think」ツールは、他のアプローチが不十分な場合に優れています。

  • 複雑なツールチェーンを必要とするケースでは**、拡張思考よりも優れています**
  • 政策重視のシナリオではベースラインプロンプトよりも効果的
  • 最適化されたプロンプトと組み合わせると特に強力になります

クイックインストール

クロードデスクトップ向け

npx -y @smithery/cli@latest install @PhillipRt/think-mcp-server --client claude --config "{}"

カーソル用

npx -y @smithery/cli@latest install @PhillipRt/think-mcp-server --client cursor --config "{}"

仕組み

「考える」ツールは、Anthropicのエンジニアリングブログで説明されているメカニズムをそのまま実装しています。クロードが応答を開始する前に行われる長時間の思考とは異なり、「考える」ツールでは、応答生成中にクロードが一時停止してじっくり考えることを可能にします。

**主なメカニズム:**このツールは外部アクションを実行したり、新しい情報を取得したりするのではなく、Claude に推論を段階的に実行するための専用のスクラッチパッドを提供するだけであり、複雑なタスクのパフォーマンスが大幅に向上します。

クロードが「考える」ツールを使用するとき:

  1. 複雑な推論の連鎖を続ける前に**、思考を整理するために一時停止する**
  2. 多段階の問題に対する構造化されたアプローチを作成する
  3. ポリシーの遵守をより徹底的かつ一貫して検証します
  4. 次のステップを決定する前にツールの出力を注意深く分析します
  5. 長時間のインタラクションでも優れたコンテキスト認識を維持します

思考ツールを使うべき時

「考える」ツールは、次のような場合に特に役立ちます。

  1. 他の MCP ツールとの連携- データベース、ファイルシステム、API からの出力を分析するのに最適です
  2. 複雑なポリシーに従う- 顧客サービス、法務、コンプライアンスのシナリオに最適
  3. 順次決定を行う- 後のステップが前のステップに依存するワークフローに最適
  4. ウェブ検索結果の処理- クロードが複数のソースから情報を統合するのに役立ちます
  5. コーディングの課題を解決- ソフトウェアエンジニアリングタスクの成功率を向上

最適な結果を得るためのシステムプロンプト

Anthropicの調査によると**、「考える」ツールと最適化されたプロンプトを組み合わせることで、パフォーマンスが最も向上することが示されています**。最良の結果を得るには、Claudeインタラクションに以下の最適化されたシステムプロンプトを追加してください。

Claude Desktop 向け (カスタム手順)

  1. 「設定」>「カスタム指示」に移動します
  2. 次のシステム プロンプトを追加します。
You have access to a "think" tool that provides a dedicated space for structured reasoning. Using this tool significantly improves your performance on complex tasks. ## When to use the think tool Before taking any action or responding to the user after receiving tool results, use the think tool as a scratchpad to: - List the specific rules that apply to the current request - Check if all required information is collected - Verify that the planned action complies with all policies - Iterate over tool results for correctness - Analyze complex information from web searches or other tools - Plan multi-step approaches before executing them ## How to use the think tool effectively When using the think tool: 1. Break down complex problems into clearly defined steps 2. Identify key facts, constraints, and requirements 3. Check for gaps in information and plan how to fill them 4. Evaluate multiple approaches before choosing one 5. Verify your reasoning for logical errors or biases Remember that using the think tool has been shown to improve your performance by up to 54% on complex tasks, especially when working with multiple tools or following detailed policies.

カーソル(グローバルルール)

カーソル ルールとしてシンク ツールを追加するには:

  1. カーソル設定を開く
  2. 一般 > AIのルールに移動します
  3. 次の内容の新しいルールを追加します。
After any context change (viewing new files, running commands, or receiving tool outputs), use the "mcp_think" tool to organize your reasoning before responding. Specifically, always use the think tool when: - After examining file contents or project structure - After running terminal commands or analyzing their outputs - After receiving search results or API responses - Before making code suggestions or explaining complex concepts - When transitioning between different parts of a task When using the think tool: - List the specific rules or constraints that apply to the current task - Check if all required information is collected - Verify that your planned approach is correct - Break down complex problems into clearly defined steps - Analyze outputs from other tools thoroughly - Plan multi-step approaches before executing them The think tool has been proven to improve performance by up to 54% on complex tasks, especially when working with multiple tools or following detailed policies.

手動インストール

サーバーをローカルで実行したい場合:

  1. リポジトリをクローンします:
    git clone https://github.com/PhillipRt/think-mcp-server.git cd think-mcp-server
  2. 依存関係をインストールします:
    npm install
  3. ビルドと実行:
    npm run build npm start
  4. Claude Desktop を手動で構成します
    • 構成ファイルを見つけるか作成します。
      • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
      • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • サーバー構成を追加します:
    { "mcpServers": { "think-tool": { "command": "node", "args": ["path/to/think-mcp-server/dist/server.js"] } } }

ライセンス

MITライセンス

You must be authenticated.

A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

Tools

Anthropic の「think」ツールの公式実装により、Claude に構造化された推論のための専用スペースが提供され、複数ステップの問題解決を必要とする複雑なタスクのパフォーマンスが最大 54% 向上しました。

  1. What is the Think Tool?
    1. Proven Performance Benefits
      1. Quick Install
        1. For Claude Desktop
        2. For Cursor
      2. How It Works
        1. When to Use the Think Tool
      3. System Prompt for Optimal Results
        1. For Claude Desktop (Custom Instructions)
        2. For Cursor (Global Rules)
      4. Manual Installation
        1. License
          ID: ykr1kw1a89