Think MCP Tool

by Rai220

105 stars
208 downloads
Not rated
GitHub

About

Think MCP Tool is an MCP (Model Context Protocol) server that provides a “think” tool for structured reasoning in agentic AI workflows. It allows an AI agent to pause and record an explicit thought during complex reasoning or multi-step tool use, inspired by Anthropic’s…

Details

Author
Rai220
GitHub stars
105
Downloads
208
Categories
Other

- Implements the “think” tool as described in Anthropic’s research.
- Minimal, standards‑based MCP server using the mcp[cli] package.
- Adds structured reasoning capabilities to models that lack native advanced reasoning.
- Advanced mode includes extra tools: criticize, plan, and search.
- Easy integration with any MCP‑compatible agent framework.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Think MCP Tool
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Add the MCP server to your agent’s configuration using uvx with argument think-mcp. For advanced mode, add --advanced and set the TAVILY_API_KEY environment variable. The tool accepts a thought string input and appends it to the log.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "think mcp tool": {
            "think-mcp": {
                "command": "uvx",
                "args": [
                    "think-mcp"
                ]
            }
        }
    }
}

McpServers

{
    "think-mcp": {
        "command": "uvx",
        "args": [
            "think-mcp"
        ]
    }
}

Think MCP Tool

Think MCP is an implementation of an MCP (Model Context Protocol) server that provides a "think" tool for structured reasoning in agentic AI workflows. This project is inspired by the Anthropic engineering article: The "think" tool: Enabling Claude to stop and think in complex tool use situations.

According to the referenced article, adding the think tool can lead to improved evaluation metrics by enabling reasoning capabilities even in models that do not natively possess advanced reasoning skills.

alt text

<a href="https://glama.ai/mcp/servers/@Rai220/think-mcp">
Think Tool MCP server
</a>

What is the "think" tool?

The "think" tool allows an AI agent to pause and record an explicit thought during complex reasoning or multi-step tool use. It does not change the environment or database, but appends the thought to the log, helping the agent process information, backtrack, or comply with detailed policies.

This approach is especially useful for:
- Tool output analysis (processing results of previous tool calls)
- Policy-heavy environments (verifying compliance with guidelines)
- Sequential decision making (where each step builds on previous ones)

Features

- Implements the "think" tool as described in Anthropic's research - Minimal, standards-based MCP server using [mcp[cli]](https://pypi.org/project/mcp/) - Ready for integration with Claude or other agentic LLMs

Usage

MCP server configuration

Add this MCP server to your facorite agent.
"mcpServers": {
    "think-mcp": {
        "command": "uvx",
        "args": ["think-mcp"],
        "enabled": true
    }
}

Tool definition

The "think" tool is defined as: - Input: thought (string) — A thought to think about. - Behavior: Appends the thought to the log for structured reasoning.

Advanced mode

Adds aditional tools for your agent: - criticize - plan - search
"mcpServers": {
    "think-mcp": {
        "command": "uvx",
        "args": ["think-mcp", "--advanced"],
        "enabled": true,
        "env": {
            "TAVILY_API_KEY": ... YOUR TAVILY API KEY HERE ...
        }
    }
}

Reference

- Based on: Anthropic Engineering Blog — The "think" tool

License

MIT License — see LICENSE
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.