MCP 思考工具服务器
模型上下文协议 (MCP) 服务器实现了“思考”工具,用于提高 Claude 的复杂推理能力。
概述
该 MCP 服务器实现了 Anthropic博客文章中描述的“思考”工具,该工具为 Claude 提供了一个专用的空间,用于在复杂的问题解决任务中进行结构化思考。事实证明,在需要遵循策略并在长链工具调用中进行推理的复杂任务中,该思考工具能够显著提升性能。
Related MCP server: MCP Think Tool 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配合使用
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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
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/DannyMac180/mcp-think-tool'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
