MCP Think Tool

by DannyMac180
Verified

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

MCP 思考工具服务器

模型上下文协议 (MCP) 服务器实现了“思考”工具,用于提高 Claude 的复杂推理能力。

概述

该 MCP 服务器实现了 Anthropic博客文章中描述的“思考”工具,该工具为 Claude 提供了一个专用的空间,用于在复杂的问题解决任务中进行结构化思考。事实证明,在需要遵循策略并在长链工具调用中进行推理的复杂任务中,该思考工具能够显著提升性能。

特征

  • 结构化思维空间:为克劳德提供一个专门的空间来分解复杂的问题
  • 思想史:保存所有思想的日志,并带有时间戳以供参考
  • 统计和分析:提供有关思维模式的元数据
  • 清空选项:允许在重新开始时清除思考历史

安装

从 PyPI 安装:

pip install mcp-think-tool

配置

风帆冲浪

要在 Windsurf 中将此工具与 Claude 一起使用,请将以下配置添加到您的 MCP 配置文件中:

"think": { "command": "/home/xxx/.local/bin/mcp-think-tool", "args": [], "type": "stdio", "pollingInterval": 30000, "startupTimeout": 30000, "restartOnFailure": true }

command字段应指向您使用 pip 安装 python 包的目录。

Docker

你可以只使用 Dockerfile 安装此 MCP 服务器

首先下载 Dockerfile,导航到其目录,然后构建 Docker 镜像

docker build -t mcp-think-tool .

然后在 MCP 配置文件中添加以下配置

"think": { "command": "docker", "args": ["run", "--rm", "-i", "mcp-think-tool"] }

已测试并可与Claude DesktopCursor配合使用

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

一个实现“思考”工具的MCP服务器,为Claude在解决复杂问题时提供专门的结构化思考空间,以提高推理能力。

  1. Overview
    1. Features
      1. Installation
        1. Configuration
          1. Windsurf
          2. Docker
        ID: xm7p0ihefb