think
Analyze and structure complex problems by inputting thoughts into the tool, enabling clear and systematic problem-solving workflows within the Claude Code MCP server.
Instructions
A tool for thinking through complex problems
Input Schema
Name | Required | Description | Default |
---|---|---|---|
thought | Yes | Your thoughts |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"thought": {
"description": "Your thoughts",
"type": "string"
}
},
"required": [
"thought"
],
"type": "object"
}