@robinson_ai_systems/sequential-thinking-mcp
v1.0.0
Published
Enhanced Sequential Thinking MCP server with parallel and reflective thinking capabilities
Maintainers
Readme
@robinsonai/sequential-thinking-mcp
Enhanced Sequential Thinking MCP Server
Advanced reasoning capabilities for AI assistants with 3 powerful thinking modes.
🧠 Features
3 Thinking Tools
sequential_thinking - Break down complex problems into sequential thought steps
- Dynamic thought adjustment
- Revision support
- Branching capabilities
- Thought history tracking
parallel_thinking (NEW) - Explore multiple solution paths simultaneously
- Create multiple branches
- Evaluate different approaches in parallel
- Compare conclusions across branches
- Track progress in each branch
reflective_thinking (NEW) - Review and critique previous thoughts
- Reflect on past decisions
- Identify improvements
- Assess confidence levels
- Track average confidence across reflections
🚀 Installation
cd packages/sequential-thinking-mcp
npm install
npm run build
npm link⚙️ Configuration
For Augment Code
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": ["sequential-thinking-mcp"]
}
}
}Windows (VS Code Augment) – prefer absolute executables:
{
"mcpServers": {
"sequential-thinking": {
"command": "C:\\nvm4w\\nodejs\\sequential-thinking-mcp.cmd",
"args": []
}
}
}Or explicit node + dist entry:
{
"mcpServers": {
"sequential-thinking": {
"command": "C:\\Program Files\\nodejs\\node.exe",
"args": [
"C:\\Users\\chris\\Git Local\\robinsonai-mcp-servers\\packages\\sequential-thinking-mcp\\dist\\index.js"
]
}
}
}📖 Usage Examples
Sequential Thinking
// Break down a complex problem
{
"thought": "First, I need to understand the requirements",
"thoughtNumber": 1,
"totalThoughts": 5,
"nextThoughtNeeded": true
}Parallel Thinking
// Explore multiple approaches
{
"branchId": "approach-a",
"description": "Use recursive algorithm",
"thought": "This approach would be more elegant",
"thoughtNumber": 1,
"nextThoughtNeeded": true
}Reflective Thinking
// Reflect on a previous thought
{
"thoughtNumber": 3,
"reflection": "This assumption might be incorrect",
"improvements": [
"Consider edge cases",
"Add validation"
],
"confidence": 0.7
}🎯 Benefits
- Better Problem Solving: Break down complex problems systematically
- Multiple Perspectives: Explore different solution paths in parallel
- Self-Improvement: Reflect on and improve your reasoning
- Confidence Tracking: Monitor confidence levels across decisions
- Thought History: Full audit trail of reasoning process
📝 License
MIT - Robinson AI Systems
