### MCP Configuration for Think Tool Server (Smithery) Source: https://github.com/cgize/claude-mcp-think-tool/blob/main/README.md Example MCP configuration for integrating the Think Tool Server when installed via Smithery. It specifies the command to execute, arguments, communication type, and timeouts for server startup and restarts. ```json { "mcpServers": { "think-tool": { "command": "npx", "args": [ "-y", "@cgize/claude-mcp-think-tool" ], "type": "stdio", "pollingInterval": 30000, "startupTimeout": 30000, "restartOnFailure": true } } } ``` -------------------------------- ### MCP Configuration for Think Tool Server (Global) Source: https://github.com/cgize/claude-mcp-think-tool/blob/main/README.md Alternative MCP configuration for integrating the Think Tool Server when installed globally via npm. This setup directly calls the installed executable and defines server operational parameters. ```json { "mcpServers": { "think-tool": { "command": "claude-mcp-think-tool", "args": [], "type": "stdio", "pollingInterval": 30000, "startupTimeout": 30000, "restartOnFailure": true } } } ``` -------------------------------- ### Install MCP Think Tool Server via Smithery CLI Source: https://github.com/cgize/claude-mcp-think-tool/blob/main/README.md Installs the Think Tool Server for Claude Desktop automatically using the Smithery CLI. This command registers the tool with the client for seamless integration. ```bash npx -y @smithery/cli install @cgize/claude-mcp-think-tool --client claude ``` -------------------------------- ### Install MCP Think Tool Server Manually Source: https://github.com/cgize/claude-mcp-think-tool/blob/main/README.md Installs the MCP Think Tool Server globally on your system using npm. This allows the tool to be run directly from the command line. ```bash npm install -g @cgize/mcp-think-tool ``` -------------------------------- ### MCP Think Tool Server API Commands Source: https://github.com/cgize/claude-mcp-think-tool/blob/main/README.md Lists the available commands for interacting with the MCP Think Tool Server. These commands allow users to manage structured reasoning processes, retrieve thoughts, and clear the thinking state. ```APIDOC MCP Think Tool Server Commands: - **think**: Record structured reasoning during problem-solving. - Usage: `think [reasoning_steps]` - Description: Allows the user to input structured thoughts or reasoning steps. - **get_thoughts**: Retrieve all recorded thoughts. - Usage: `get_thoughts` - Description: Returns a history of all reasoning steps recorded using the 'think' command. - **clear_thoughts**: Reset the thinking process. - Usage: `clear_thoughts` - Description: Clears all previously recorded thoughts, resetting the thinking state. - **get_thought_stats**: Analyze thinking patterns. - Usage: `get_thought_stats` - Description: Provides an analysis or statistics on the recorded thinking patterns. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.