Think MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| thinkA | Add one evolving reasoning step. Use for iterative work, revisions, or branches. Whole chain ready -> think_batch. Enforced multi-pass gate -> think_cycle. Code-audit checklist -> think_logic. Returns progress, surfaced guidance, and one next action. |
| think_batch | Submit an already-complete reasoning chain atomically. For exploration use think or think_cycle. Rejects thoughts under 50 chars or over 60% similarity; warns when average confidence is below 4. |
| think_doneA | Verify and close a think/think_batch scope before a complex final answer. For think_cycle use action=finalize. Rejects path gaps or unresolved blockers and returns the next correction. |
| think_recallA | Read-only search of an active/explicit scope or saved insights. Use before repeating work or relying on prior reasoning. |
| think_reset | Clear active scope. Irreversible. TRIGGER:
DO NOT RESET:
|
| think_cycleA | Run an enforced multi-pass reasoning loop for high-risk or ambiguous work. Start once, then follow the single returned next step until the gate passes; finish with action=finalize. If start had constraints, include constraintCheck. For ordinary iterative work use think. Do not use think_done for a cycle. Interop:
|
| think_logicA | Return a read-only code-analysis checklist. It does not inspect code, store progress, or produce findings. Use only when a model needs a methodology; use think or think_cycle to perform the analysis. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Tools have distinct purposes (add step, close, recall, cycle, logic checklist), but think_done references 'think_batch' which is not a tool, potentially causing confusion.
Four tools follow 'think_' prefix pattern, but one is simply 'think' without the underscore, breaking consistency.
5 tools is well-scoped for a reasoning assistant, each serving a clear role without being overwhelming.
Covers core reasoning operations but lacks the referenced 'think_batch' tool and potentially missing features like reset or status.