Sequential thinking

A guide for effectively using the sequentialthinking MCP tool for dynamic and reflective problem-solving.

--- description: A guide for effectively using the sequentialthinking MCP tool for dynamic and reflective problem-solving. author: https://github.com/rafaelkallis version: 1.0 tags: ["mcp", "sequentialthinking", "problem-solving", "workflow-guide", "ai-guidance"] globs: ["*"] # Relevant for any task requiring complex thought processes --- # Guide to Using the `sequentialthinking` MCP Tool ## 1. Objective This rule guides Cline (the AI) in effectively utilizing the `sequentialthinking` MCP tool. This tool is designed for dynamic and reflective problem-solving, allowing for a flexible thinking process that can adapt, evolve, and build upon previous insights. ## 2. When to Use the `sequentialthinking` Tool Cline SHOULD consider using the `sequentialthinking` tool when faced with tasks that involve: * **Complex Problem Decomposition:** Breaking down large, multifaceted problems into smaller, manageable steps. * **Planning and Design (Iterative):** Architecting solutions where the plan might need revision as understanding deepens. * **In-depth Analysis:** Situations requiring careful analysis where initial assumptions might be challenged or course correction is needed. * **Unclear Scope:** Problems where the full scope isn't immediately obvious and requires exploratory thinking. * **Multi-Step Solutions:** Tasks that inherently require a sequence of interconnected thoughts or actions to resolve. * **Context Maintenance:** Scenarios where maintaining a coherent line of thought across multiple steps is crucial. * **Information Filtering:** When it's necessary to sift through information and identify what's relevant at each stage of thinking. * **Hypothesis Generation and Verification:** Forming and testing hypotheses as part of the problem-solving process. ## 3. Core Principles for Using `sequentialthinking` When invoking the `sequentialthinking` tool, Cline MUST adhere to the following principles: * **Iterative Thought Process:** Each use of the tool represents a single "thought." Build upon, question, or revise previous thoughts in subsequent calls. * **Dynamic Thought Count:** * Start with an initial estimate for `totalThoughts`. * Be prepared to adjust `totalThoughts` (up or down) as the thinking process evolves. * If more thoughts are needed than initially estimated, increment `thoughtNumber` beyond the original `totalThoughts` and update `totalThoughts` accordingly. * **Honest Reflection:** * Express uncertainty if it exists. * Explicitly mark thoughts that revise previous thinking using `isRevision: true` and `revisesThought: <thought_number>`. * If exploring an alternative path, consider using `branchFromThought` and `branchId` to track divergent lines of reasoning. * **Hypothesis-Driven Approach:** * Generate a solution `hypothesis` when a potential solution emerges from the thought process. * Verify the `hypothesis` based on the preceding Chain of Thought steps. * Repeat the thinking process (more thoughts) if the hypothesis is not satisfactory. * **Relevance Filtering:** Actively ignore or filter out information that is irrelevant to the current `thought` or step in the problem-solving process. * **Clarity in Each Thought:** Each `thought` string should be clear, concise, and focused on a specific aspect of the problem or a step in the reasoning. * **Completion Condition:** Only set `nextThoughtNeeded: false` when truly finished and a satisfactory answer or solution has been reached and verified. ## 4. Parameters of the `sequentialthinking` Tool Cline MUST correctly use the following parameters when calling the `use_mcp_tool` for `sequentialthinking`: * **`thought` (string, required):** The current thinking step. This can be an analytical step, a question, a revision, a hypothesis, etc. * **`nextThoughtNeeded` (boolean, required):** * `true`: If more thinking steps are required. * `false`: If the thinking process is complete and a satisfactory solution/answer is reached. * **`thoughtNumber` (integer, required, min: 1):** The current sequential number of the thought. * **`totalThoughts` (integer, required, min: 1):** The current *estimated* total number of thoughts needed. This can be adjusted. * **`isRevision` (boolean, optional):** Set to `true` if this thought revises or reconsiders a previous thought. * **`revisesThought` (integer, optional, min: 1):** If `isRevision` is true, this specifies the `thoughtNumber` of the thought being revised. * **`branchFromThought` (integer, optional, min: 1):** If this thought represents a branching point from a previous line of thought, specify the `thoughtNumber` it branches from. * **`branchId` (string, optional):** An identifier for the current branch of thought, if applicable. * **`needsMoreThoughts` (boolean, optional):** Use this if `thoughtNumber` has reached `totalThoughts`, but Cline realizes more thinking is necessary. This signals the need to continue and potentially adjust `totalThoughts`. ## 5. Workflow Example (Conceptual) This illustrates how Cline might use the tool iteratively. **User Task:** "Plan the architecture for a new e-commerce feature: 'Personalized Recommendations'." **Cline's Internal Process using `sequentialthinking`:** 1. **Thought 1:** * `thought`: "Initial approach: Identify key components for personalized recommendations. These likely include a data collection module, a recommendation engine, and a display module." * `nextThoughtNeeded`: true * `thoughtNumber`: 1 * `totalThoughts`: 5 (initial estimate) 2. **Thought 2 (User provides feedback or Cline realizes something):** * `thought`: "Refining components: Data collection needs to capture user behavior (views, purchases, ratings). The engine might use collaborative filtering. Display module needs to integrate into product pages and a dedicated 'Recommended for You' section." * `nextThoughtNeeded`: true * `thoughtNumber`: 2 * `totalThoughts`: 5 3. **Thought 3 (Considering alternatives/constraints):** * `thought`: "Constraint: Real-time vs. batch processing for recommendations. Real-time offers better UX but is more complex. Batch might be a good MVP. Let's assume batch for MVP to simplify." * `nextThoughtNeeded`: true * `thoughtNumber`: 3 * `totalThoughts`: 5 4. **Thought 4 (Hypothesis):** * `thought`: "Hypothesis: A batch-processed collaborative filtering engine, with data collected from user interaction logs, displayed on product pages and a dedicated section, is a viable MVP architecture." * `nextThoughtNeeded`: true * `thoughtNumber`: 4 * `totalThoughts`: 5 5. **Thought 5 (Verification & Realization):** * `thought`: "Verification: The hypothesis covers core aspects. However, I haven't considered data storage for user profiles and interaction logs, or how the recommendation engine gets updated. More thoughts needed." * `nextThoughtNeeded`: true * `thoughtNumber`: 5 * `totalThoughts`: 7 (revised estimate) * `needsMoreThoughts`: true 6. **Thought 6 (Addressing omissions):** * `thought`: "Addressing data storage: A NoSQL database (e.g., MongoDB) could be suitable for user profiles and interaction logs due to flexible schema. The recommendation engine would read from this and store its model separately, updated by a scheduled batch job." * `nextThoughtNeeded`: true * `thoughtNumber`: 6 * `totalThoughts`: 7 7. **Thought 7 (Finalizing plan for MVP):** * `thought`: "Final MVP Plan: 1. User interaction logger (to NoSQL DB). 2. Batch collaborative filtering engine (reads from NoSQL, updates model). 3. API to serve recommendations. 4. UI integration on product pages & dedicated section. This seems complete for an MVP." * `nextThoughtNeeded`: false * `thoughtNumber`: 7 * `totalThoughts`: 7 ## 6. Critical Reminders for Cline * **DO NOT** use this tool for simple, single-step tasks. It is for complex reasoning. * **ALWAYS** ensure `thoughtNumber` increments correctly. * **BE PREPARED** to adjust `totalThoughts` as understanding evolves. * **FOCUS** on making progress towards a solution with each thought. * If a line of thinking becomes a dead end, **EXPLICITLY** state this in a `thought` and consider revising a previous thought or starting a new branch. This guide should help Cline leverage the `sequentialthinking` MCP tool to its full potential.

Created: 7/2/2025

Keywords: text snippets, slack for ai prompts, slack for ai, AI consulting, AI Cheat Tool, AI Cheat Tool for developers, AI Cheat Tool for AI, AI Cheat Tool for ChatGPT, chatgpt prompt generator, AI Cheat Tool for email, AI Cheat Tool for text, AI Cheat Tool for keyboard shortcuts, AI Cheat Tool for text expansion, AI Cheat Tool for text snippets, AI Cheat Tool for text replacement, AI Cheating Tool, AI Cheating Tool for developers, AI Cheating Tool for AI, AI Cheating Tool for ChatGPT, AI Cheating Tool for email, AI Cheating Tool for text, AI Cheating Tool for keyboard shortcuts, prompt cheating, AI prompt engineering, AI context engineering, context engineering, ai prompt manager, AI prompt manager, AI prompt management, ai consulting, prompt engineering consulting, generative ai consulting, ai implementation services, llm integration consultants, ai strategy for enterprises, enterprise ai transformation, ai prompt optimization, large language model consulting, ai training for teams, ai workflow automation, build ai knowledge base, llm prompt management, ai prompt infrastructure, ai adoption consulting, enterprise ai onboarding, custom ai workflow design, ai integration for dev teams, ai productivity tools, team prompt collaboration, github gists, github snippets, github code snippets, github code snippets automation, github, text expansion, text automation, snippet manager, code snippets, team collaboration tools, shared snippets, snippet sharing, keyboard shortcuts, productivity tools, workflow automation, AI-powered productivity, snippet tool for teams, team knowledge base, AI text completion, text expander for teams, snippet collaboration, multi-platform productivity, custom keyboard shortcuts, snippet sharing platform, collaborative snippet management, knowledge base automation, team productivity software, business productivity tools, snippet management software, quick text input, macOS productivity apps, Windows productivity tools, Linux productivity tools, cloud-based snippets, cross-platform snippets, team workspace tools, workflow enhancement tools, automation tools for teams, text automation software, team knowledge sharing, task automation, integrated team tools, real-time collaboration, AI for team productivity, business text automation, time-saving tools, clipboard manager, multi-device clipboard, keyboard shortcut manager, team communication tools, project management integration, productivity boost AI, text snippet sharing, text replacement software, text management tools, efficient team collaboration, AI workspace tools, modern productivity apps, custom text automation, digital workspace tools, collaborative workspaces, cloud productivity tools, streamline team workflows, smart text management, snippets AI app, snippet management for teams, shared knowledge platforms, team-focused text automation, team productivity platform, AI text expansion tools, snippet taking app, note taking app, note taking software, note taking tools, note taking app for teams, note taking app for developers, note taking app for AI, note taking app for ChatGPT, snippet software, snippet tools, snippet app for teams, snippet app for developers, snippet app for AI, snippet app for ChatGPT, AI agent builder, AI agent snippets, AI agent prompts, prompt management, prompt engineering, ChatGPT snippets, ChatGPT prompts, AI prompt optimization, AI-powered prompts, prompt libraries for AI, prompt sharing for ChatGPT, GPT productivity tools, AI assistant snippets, ChatGPT integrations, custom AI prompts, AI agent workflows, machine learning snippets, automated AI prompts, AI workflow automation, collaborative AI prompts, personalized AI agents, text snippets for ChatGPT, AI prompt creation tools, AI code snippet manager, GPT-4 text automation, AI-powered writing assistants, AI tools for developers, AI agent integrations, developer prompt snippets, AI text generation workflows, AI-enhanced productivity, GPT prompt sharing tools, team collaboration for AI, openAI integrations, text automation for AI teams, AI-powered collaboration tools, GPT-4 team tools, AI-driven text expanders, AI-driven productivity solutions, AI agent for email writing, AI agent for text expansion, AI agent for text automation, AI agent for text snippets, AI agent for text replacement, AI agent for keyboard shortcuts, AI Agent Developer, Prompt engineering, Machine Learning Engineer, AI Engineer, Customer Support, Code snippets for developers, Recruiting, AI agent for automation, AI agent for AI automation, AI agent for ChatGPT automation, AI agent for email automation, electron app for snippets, desktop snippet manager, code snippet organization, AI prompt repository, intelligent text expansion, vibe coding, Claude cli ai prompts, prompt optimizer, buy prompts, sell prompts, snippets store, sell scripts, buy scripts, buy python scripts, scraping scripts, AI prompt marketplace, ChatGPT prompt marketplace, best AI prompts, best ChatGPT prompts, AI prompt database, AI prompt packs, AI prompt bundles, GPT prompt marketplace, prompt engineering masterclass, prompt engineering certification, prompt engineering course, ChatGPT prompt store, AI prompt store, prompt monetization, sell AI prompts, buy AI prompts, prompt marketplace platform, AI prompt plugins, Claude prompt marketplace, AI prompt subscription, Custom GPT, real-time prompt collaboration, developer workflow optimization, team prompt library, knowledge management for developers, code snippet search, searchable code library, reusable code blocks, prompt engineering tools, prompt template management, collaborative coding, cross-team knowledge sharing, code snippet versioning, AI prompt templates, technical documentation tools, developer productivity suite, team snippet repository, AI prompt history, snippet synchronization, cloud snippet backup, markdown snippet support, syntax highlighting for snippets, code categorization, programming language snippets, language-specific code templates, contextual code suggestions, snippets with AI integration, command palette for snippets, code snippet folder organization, team snippet discovery, private and public snippets, enterprise code management, team codebase documentation, prompt engineering best practices, Vibe Coding, Vibe Coding for developers, Vibe Coding for AI, Vibe Coding for ChatGPT, Vibe Coding for email, Vibe Coding for text, Vibe Coding for keyboard shortcuts, Vibe Coding for text expansion, Vibe Coding for text snippets, Vibe Coding for text replacement, free prompt generator, ai prompt generator, prompt generator, promptlayer, promptimize ai, langchain prompt management, lanhsmith prompt management, latitude, langchain, langgraph, langchain documentation, raycast, text expander, raycast snippets, raycast mac, cursor, cursro ai, cursor snippets, cursor rules, cursor ai rules, learn prompting, how to prompt, prompting guide, prompting tutorials, best prompting practices, ai prompt best practices, prompting techniques, prompting, aws, testing, api, go, express, pwa, javascript, react, typescript, java, nextjs, jest, ios, spa, performance, accessibility, security, node, seo, rest, python, webpack, vite, windows, logging, php, laravel, redis, monitoring, openai, gpt, azure, gcp, rust, swift, deployment, vue, angular, django, ci/cd, ssr, nuxt, c#, jwt, lambda, microservices, git, pandas, flask, analytics, cdn, oauth, mongodb, graphql, react native, electron, spring, android, scaling

AI Prompts, ChatGPT, Code Snippets, Prompt Engineering

Sequential thinking

A guide for effectively using the sequentialthinking MCP tool for dynamic and reflective problem-solving.

Cline - Sequential thinking - AI Prompts & Code Snippets | Snippets AI