MCP 思维工具服务器

MCP 思维工具服务器

一个为 Claude 实现思维工具的 MCP 服务器,提升复杂推理能力。

快速入门

概述

本项目是一个 MCP 服务器,实现 Anthropic 的“思维”工具,帮助 Claude 进行结构化思考。

安装

通过 PyPI 安装:

pip install mcp-think-tool

配置

Windsurf

在 MCP 配置文件中添加以下内容:

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

Docker

  1. 下载 Dockerfile 并构建镜像:

docker build -t mcp-think-tool .

  1. 在 MCP 配置文件中添加:

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

完成配置后即可运行服务。