这是一个实现“思考”工具的Model Context Protocol (MCP)服务器,旨在提高Claude在复杂推理任务中的表现。
<a href="https://glama.ai/mcp/servers/@cgize/claude-mcp-think-tool"> <img width="380" height="200" src="https://gips2.baidu.com/it/u=2786763035,366924991&fm=3081&app=3081&f=PNG?w=760&h=400" alt="Think Tool Server MCP服务器" /> </a>此MCP服务器实现了Anthropic的“思考”工具,该工具为Claude提供了一个专门的空间,在解决复杂问题时进行结构化思考。正如Anthropic博客文章所述,“思考”工具显著提高了需要遵守政策并在长链工具调用中进行推理的复杂任务的表现。
向Claude添加这些自定义指令以优化其使用“思考”工具:
您有权访问一个“思考”工具,它提供了一个专门的空间用于结构化推理。使用此工具可以显著提高您在复杂任务上的表现。
## 何时使用“思考”工具
在接收工具结果后采取任何行动或回应用户之前,使用“思考”工具作为草稿纸来:
- 列出适用于当前请求的具体规则
- 检查是否已收集所有必需的信息
- 验证计划的操作是否符合所有政策
- 对工具结果进行迭代检查正确性
- 分析来自网络搜索或其他工具的复杂信息
- 在执行前规划多步骤方法
## 如何有效使用“思考”工具
使用“思考”工具时:
1. 将复杂问题分解成明确定义的步骤
2. 确定关键事实、约束条件和需求
3. 检查信息缺口并计划如何填补它们
4. 在选择一种方法之前评估多种方法
5. 验证您的推理是否存在逻辑错误或偏见
要通过Smithery自动安装Claude桌面的Think Tool Server:
npx -y @smithery/cli install @cgize/claude-mcp-think-tool --client claude
npm install -g @cgize/mcp-think-tool
将以下配置添加到您的MCP配置文件中:
{
"mcpServers": {
"think-tool": {
"command": "npx",
"args": [
"-y",
"@cgize/mcp-think-tool"
],
"type": "stdio",
"pollingInterval": 30000,
"startupTimeout": 30000,
"restartOnFailure": true
}
}
}
配置文件位置:
C:\Users\[用户名]\AppData\Roaming\Claude\claude_desktop_config.json如果全局安装,还可以使用:
{
"mcpServers": {
"think-tool": {
"command": "claude-mcp-think-tool",
"args": [],
"type": "stdio",
"pollingInterval": 30000,
"startupTimeout": 30000,
"restartOnFailure": true
}
}
}
使用“思考”工具解决这个多步骤问题:
一列火车以恒定速度60公里/小时行驶。它于上午9:00从A站出发,并于上午11:30到达B站。请问A站与B站之间的距离是多少?
MIT