The Claude Think Tool MCP Server is a Model Context Protocol (MCP) server designed to enhance Claude's complex reasoning capabilities. It implements the "think" tool, which provides Claude with a structured space for breaking down and solving complex problems. This tool has been shown to significantly improve performance in tasks requiring policy adherence and reasoning in long chains of tool calls.
To install the Claude Think Tool MCP Server, use the following command:
pip install mcp-think-tool
To integrate this tool with Claude in Windsurf, add the following configuration to your MCP config file:
"think": {
"command": "/home/xxx/.local/bin/mcp-think-tool",
"args": [],
"type": "stdio",
"pollingInterval": 30000,
"startupTimeout": 30000,
"restartOnFailure": true
}
Make sure the command
field points to the directory where you installed the Python package using pip.