MCP Catalogs
Home

sequential-thinking-mcp-v2

by spideynolove·8·Score 41

A structured reasoning MCP server with session persistence and memory management

developer-toolsai-llmproductivity
3
Forks
1
Open issues
2 mo ago
Last commit
2d ago
Indexed

Overview

Sequential Thinking MCP v2 is a local MCP server that implements structured reasoning, session persistence, and project memory management. It follows a first principle thinking framework with an approved design for a layered memory architecture. The server manages reasoning lifecycles through scratch reasoning, checkpoint summaries, promoted conclusions, and canonical docs. It plans to integrate cloud-assisted operations with local-first fallback when network access fails.

Try asking AI

After installing, here are 7 things you can ask your AI assistant:

you:Long-running coding agent work with persistent memory
you:Complex problem-solving requiring structured reasoning
you:Project management with maintained reasoning context
you:Handoff between different AI agents or sessions
you:What is the memory architecture design?
you:How does token management work?
you:What happens when network access fails?

When to choose this

Choose this for complex coding tasks requiring persistent memory across sessions and structured reasoning approaches.

When NOT to choose this

Avoid if you need immediate production stability, as this is undergoing architectural redesign with unclear implementation timeline.

Tools this server exposes

7 tools extracted from the README
  • retrieve_context

    Retrieve relevant context for the current task

  • search_docs

    Search through canonical documentation

  • search_memory

    Search through promoted memory artifacts

  • promote_memory

    Promote reasoning to durable memory

  • summarize_session

    Create a summary of the current session

  • generate_handoff

    Generate a handoff bundle for session continuity

  • map_changed_modules

    Map modules that have changed during the session

Comparable tools

mcp-server-context-mgmtmcp-semantic-memorymcp-persistent-storage

Installation

Installation

  1. Clone the repository:
git clone https://github.com/spideynolove/sequential-thinking-mcp-v2.git
cd sequential-thinking-mcp-v2
  1. Install dependencies and run the server:
uv sync
uv run main.py
  1. For Claude Desktop integration, add the following to your claude_desktop_config.json:
{
  "mcpServers": {
    "sequential-thinking": {
      "command": "python",
      "args": ["main.py"],
      "cwd": "/path/to/sequential-thinking-mcp-v2"
    }
  }
}

FAQ

What is the memory architecture design?
The design uses markdown as canonical human truth, qmd for document retrieval, Zvec for promoted artifacts, and a structured metadata store for lifecycle state.
How does token management work?
The project targets an active context ceiling of 64K with compaction triggers at 45K. It retrieves on demand, checkpoints at subtask boundaries, and compresses old context.
What happens when network access fails?
The server operates with a cloud-assisted, local-first fallback approach, ensuring functionality even when internet access is unavailable.

Compare sequential-thinking-mcp-v2 with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.