MCP Think Tool Server
An MCP server implementing the think tool for Claude
Overview
MCP Think Tool is a server that implements the Model Context Protocol (MCP) to enhance Claude's reasoning capabilities through structured thinking.
To use MCP Think Tool, install it via PyPI with the command pip install mcp-think-tool and integrate it into your applications that require complex problem-solving.
- Structured Thinking Space for breaking down complex problems - Thought History log with timestamps - Statistics and Analysis for thinking patterns - Clean Slate Option to reset thought history
- Enhancing AI reasoning in complex decision-making tasks
- Maintaining a history of thought processes for review
- Analyzing thinking patterns for improved AI performance
Add to your AI client
Use these steps to connect MCP Think Tool Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-think-tool-dannymac180": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-think-tool-dannymac180"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-think-tool-dannymac180": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-think-tool-dannymac180"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-think-tool-dannymac180": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-think-tool-dannymac180"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-think-tool-dannymac180": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-think-tool-dannymac180"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-think-tool-dannymac180": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-think-tool-dannymac180"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-think-tool-dannymac180": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-think-tool-dannymac180"
]
}
}
}FAQ
What is the purpose of the think tool?
The think tool provides a structured environment for Claude to improve its reasoning in complex tasks.
How do I install the MCP Think Tool?
You can install it using the command `pip install mcp-think-tool`.
Is there a way to clear the thought history?
Yes, the tool includes a Clean Slate Option to clear the thought history.