zacharyliner1xds/my-sequential-thinking-mcp
Built by Metorial, the integration platform for agentic AI.
zacharyliner1xds/my-sequential-thinking-mcp
Server Summary
Manage sequential thinking chains
Validate reasoning at each step
Store and retrieve reasoning patterns
Analyze reasoning quality
Visualize thinking pathways
Integrate with Memory Bank system
A Model Context Protocol (MCP) server focused on structured sequential thinking capabilities, designed to integrate with Cline's Memory Bank. This server helps break down complex problems into structured sequential steps, track reasoning chains, and store thinking patterns.
The server consists of the following core components:
The server provides the following MCP tools:
Create a new sequential thinking process with specified parameters.
Add a step to an existing thinking chain.
Validate logical connections between steps.
Retrieve a complete thinking chain.
Create visual representation of a thinking chain.
Save a thinking chain to Memory Bank.
Load a thinking chain from Memory Bank.
Find related thinking chains based on parameters.
Apply a reasoning template to current thinking.
The server supports various thinking types, each with specific patterns and structures:
The server includes ready-to-use reasoning templates to jumpstart the thinking process:
npm install
Start the server:
node index.js
The server will be available as an MCP server that you can connect to via Claude/Cline
This server is designed to integrate with Cline's Memory Bank, allowing:
// Example: Create a new thinking chain
{
"problem": "How to improve user engagement on our platform",
"thinking_type": "systems",
"context": "Our user engagement metrics have decreased by 15% over the past quarter"
}
// Example: Add a thinking step
{
"chain_id": "3a7e4fc0-5c1d-4b9f-9d1a-8b5e7c5a9d3e",
"description": "Identify key components of the engagement system",
"reasoning": "User engagement consists of several interconnected components including onboarding, core user actions, notification systems, and retention mechanisms.",
"evidence": "Analysis of our user journey maps and analytics data",
"confidence": 0.8
}
// Example: Generate a visualization
{
"chain_id": "3a7e4fc0-5c1d-4b9f-9d1a-8b5e7c5a9d3e",
"format": "mermaid",
"options": {
"showValidation": true,
"showConfidence": true
}
}
The server implements a comprehensive tagging system with multiple dimensions:
MIT