Structured Thinking MCP Server
@Promptly-Technologies-LLC
About Structured Thinking MCP Server
A TypeScript Model Context Protocol (MCP) server to allow LLMs to programmatically construct mind maps to explore an idea space, with enforced "metacognitive" self-reflection
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"structured-thinking": {
"command": "npx",
"args": [
"-y",
"structured-thinking"
]
}
}
}Tools
5Stores a new thought in memory and in the thought history and runs a pipeline to classify the thought, return metacognitive feedback, and retrieve relevant thoughts.
Revises a thought in memory and in the thought history.
Finds thoughts from long-term storage that share tags with the specified thought.
Generate a comprehensive summary of the entire thinking process.
Clear all recorded thoughts and reset the server state.
Overview
What is Structured Thinking MCP Server?
A TypeScript Model Context Protocol (MCP) server that allows LLMs to programmatically construct mind maps for exploring an idea space, with enforced metacognitive self-reflection. It is based on Arben Ademi's Sequential Thinking Python server.
How to use Structured Thinking MCP Server?
Configure the tool in Claude Desktop, Cursor, or another MCP client using the JSON setting with "command": "npx" and "args": ["-y", "structured-thinking"]. The server exposes MCP tools such as capture_thought, revise_thought, retrieve_relevant_thoughts, get_thinking_summary, and clear_thinking_history.
Key features of Structured Thinking MCP Server
- Thought quality scores (0โ1) for metacognitive feedback
- Thought stages (e.g., Problem Definition, Analysis) to steer thinking
- Branching to explore parallel lines of reasoning
- Short-term memory buffer (10 most recent thoughts)
- Long-term memory retrieval based on tags
- Summarization of entire thinking process
Use cases of Structured Thinking MCP Server
- LLMs constructing structured mind maps during problem-solving
- Enforcing self-reflection and metacognitive awareness in reasoning
- Exploring multiple solution branches simultaneously
- Debugging or reviewing an LLM's thought process step-by-step
FAQ from Structured Thinking MCP Server
How are thought quality scores used?
Each thought is assigned a quality score between 0 and 1, which combines with the thought's stage to provide metacognitive feedback that steers the LLM's thinking process.
What are thought stages and why are they important?
Each thought is tagged with a stage (e.g., Problem Definition, Analysis, Ideation). If the LLM spends too long in a stage or has low-quality thoughts, the server gives feedback to steer toward other stages or different thinking strategies.
Does the server persist thoughts to a file or database?
No. Currently, all thoughts are stored only in memory. There is no user interface or persistence to a file or database.
What are the main limitations of the server?
The metacognitive monitoring is mechanical, based on a single self-reported quality score and naive stage-based multipliers. There is also no user interface or visualization of the thought graph.
What MCP tools does the server expose?
It exposes capture_thought, revise_thought, retrieve_relevant_thoughts, get_thinking_summary, and clear_thinking_history.
Frequently asked questions
How are thought quality scores used?
Each thought is assigned a quality score between 0 and 1, which combines with the thought's stage to provide metacognitive feedback that steers the LLM's thinking process.
What are thought stages and why are they important?
Each thought is tagged with a stage (e.g., Problem Definition, Analysis, Ideation). If the LLM spends too long in a stage or has low-quality thoughts, the server gives feedback to steer toward other stages or different thinking strategies.
Does the server persist thoughts to a file or database?
No. Currently, all thoughts are stored only in memory. There is no user interface or persistence to a file or database.
What are the main limitations of the server?
The metacognitive monitoring is mechanical, based on a single self-reported quality score and naive stage-based multipliers. There is also no user interface or visualization of the thought graph.
What MCP tools does the server expose?
It exposes `capture_thought`, `revise_thought`, `retrieve_relevant_thoughts`, `get_thinking_summary`, and `clear_thinking_history`.
Basic information
More Other MCP servers
FastMCP v2 ๐
jlowin๐ The fast, Pythonic way to build MCP servers and clients.
Inbox Zero AI MCP
elie222The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.
Maestro
mobile-dev-incPainless E2E Automation for Mobile and Web
AutoBrowser MCP
autobrowser-aiBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
๐ Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Comments