MCP 思考工具服务器
模型上下文协议 (MCP) 服务器实现了“思考”工具,用于提高 Claude 的复杂推理能力。
概述
该 MCP 服务器实现了 Anthropic博客文章中描述的“思考”工具,该工具为 Claude 提供了一个专用的空间,用于在复杂的问题解决任务中进行结构化思考。事实证明,在需要遵循策略并在长链工具调用中进行推理的复杂任务中,该思考工具能够显著提升性能。
Related MCP server: think-mcp-server
特征
结构化思维空间:为克劳德提供一个专门的空间来分解复杂的问题
思想史:保存所有思想的日志,并带有时间戳以供参考
统计和分析:提供有关思维模式的元数据
清空选项:允许在重新开始时清除思考历史
安装
从 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 Desktop和Cursor配合使用
Appeared in Searches
- Tools and frameworks for thinking about software development
- Slow thinking, distributed thinking, and reasoning abilities research
- A server for finding information about step-by-step thinking and slow thinking methodologies
- Tools for slow thinking, step-back reasoning, and contextual memory capabilities
- General search for 'think' - potentially ideas, concepts, or thoughts