Skip to main content
Glama

think

Analyze and append thoughts to a log for complex reasoning or memory retention without altering data. Ideal for breaking down problems and enhancing decision-making processes.

Instructions

Use the tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
thoughtYesA thought to think about.

Implementation Reference

  • The async handler function for the "think" tool. It simply returns the input 'thought' as text content, allowing the model to externalize its thinking.
    async ({ thought }) => { // This tool does nothing at all - it's a no-op // It simply lets Claude externalize its thinking process return { content: [ { type: "text", text: thought, }, ], }; }
  • Zod input schema for the "think" tool, defining a single string parameter 'thought'.
    { thought: z.string().describe("A thought to think about."), },
  • src/index.ts:12-30 (registration)
    Registration of the "think" tool on the MCP server, including name, description, schema, and handler.
    server.tool( "think", "Use the tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed.", { thought: z.string().describe("A thought to think about."), }, async ({ thought }) => { // This tool does nothing at all - it's a no-op // It simply lets Claude externalize its thinking process return { content: [ { type: "text", text: thought, }, ], }; } );

Other Tools

Related Tools

  • @PhillipRt/think-mcp-server
  • @NaniDAO/agentek
  • @marcopesani/think-mcp-server
  • @cgize/claude-mcp-think-tool
  • @hanzoai/mcp
  • @flight505/mcp-think-tank

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/piotrpalek/mcp-thinking-tool'

If you have feedback or need assistance with the MCP directory API, please join our Discord server