CONTINUITY
FreeNot checkedProvides session persistence, crash recovery, decision tracking, and context compression for AI assistants, enabling seamless multi-session continuity.
About
Provides session persistence, crash recovery, decision tracking, and context compression for AI assistants, enabling seamless multi-session continuity.
README
Session State Persistence for AI Systems
License TypeScript MCP LobeHub
Crashes lose seconds, not hours. Every AI instance picks up exactly where the last one left off.
The Problem
AI assistants are stateless by design. Every session starts fresh. This is fine for one-off questions but catastrophic for multi-session projects where architectural decisions compound and context is everything.
- Sessions crash, hit token limits, or end — and the next one starts blind
- Architectural decisions get re-debated from scratch
- Completed work gets forgotten; hours vanish into reconstruction
- The same problems get solved repeatedly across different codebases
The Solution
8 tools that handle session persistence, crash recovery, decision tracking, and context compression. Plug CONTINUITY into Claude Desktop (or any MCP-compatible client) and session continuity becomes automatic.
It's the difference between a collaborator who remembers your project and one who asks "so what are we working on?" every morning.
Tools
| Tool | Purpose |
|---|---|
continuity_save_session |
Generate structured handoff at session end |
continuity_load_session |
Resume from last session with compressed context |
continuity_checkpoint |
Lightweight state save every 3-5 operations |
continuity_recover_crash |
Detect crash and auto-recover from last checkpoint |
continuity_log_decision |
Record architectural decisions with rationale + alternatives |
continuity_query_decisions |
Search decision history to prevent re-debates |
continuity_compress_context |
Smart context compression (20K tokens → 1K) |
continuity_handoff_quality |
Validate handoff completeness before saving |
Installation
Prerequisites
- Node.js >= 18
- Claude Desktop or any MCP-compatible client
Setup
git clone https://github.com/duke-of-beans/CONTINUITY.git
cd CONTINUITY
npm install --include=dev
npm run build
Configure Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"CONTINUITY": {
"command": "node",
"args": ["/path/to/CONTINUITY/dist/index.js"],
"env": {
"CONTINUITY_DATA_DIR": "/path/to/your/.continuity"
}
}
}
}
Restart Claude Desktop. You'll see 8 new tools available.
Configuration
CONTINUITY_DATA_DIR controls where state is stored. Defaults to ~/.continuity.
.continuity/
├── config.json # Settings (auto-generated with defaults)
├── state.db # SQLite database
├── sessions/ # JSON state snapshots + markdown handoffs
└── decisions/ # JSONL decision log
Usage
Session Lifecycle
Session Start:
→ continuity_recover_crash() # Check for unclean shutdown
→ continuity_load_session() # Load last session context
During Work:
→ continuity_checkpoint() # Every 3-5 tool calls
→ continuity_log_decision() # When architectural choices are made
Session End:
→ continuity_handoff_quality() # Validate completeness
→ continuity_save_session() # Generate handoff for next session
Decision Registry
Stop re-debating the same architectural choices:
continuity_log_decision({
workspace: "my-project",
category: "architectural",
decision: "Use PostgreSQL over Neo4j",
rationale: "Simpler ops, graph extension covers graph needs",
alternatives: ["Neo4j", "DGraph", "ArangoDB"],
impact: "high",
revisit_trigger: "If graph queries exceed 10K nodes/sec"
})
Later, in any new session:
continuity_query_decisions({ keyword: "database", workspace: "my-project" })
// → Returns the decision with full rationale, preventing re-debate
Crash Recovery
continuity_recover_crash({ workspace: "my-project" })
// → Detects unclean shutdown
// → Returns last checkpoint with active files, next steps, recovery context
// → Zero context loss if checkpoints were regular
Architecture
Storage Layer
├── SQLite (state.db) → Checkpoints, session records, fast queries
├── JSONL (decisions.jsonl) → Append-only architectural decision log
└── JSON (sessions/*.json) → Full session state snapshots + markdown handoffs
Tool Modules
├── session-tools.ts → save, load, checkpoint, crash recovery
├── decision-tools.ts → log + query architectural decisions
└── utility-tools.ts → compression, handoff validation
Server
└── mcp-server.ts → MCP SDK wiring, tool registration, error handling
Works With
Compatible with Claude Desktop, Cursor, and any MCP-compatible client. Designed to compose with other MCP servers — any server can trigger checkpoints via the standard tool interface.
License
MIT — Use it, fork it, build on it.
Author
Installing CONTINUITY
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/duke-of-beans/CONTINUITYFAQ
Is CONTINUITY MCP free?
Yes, CONTINUITY MCP is free — one-click install via Unyly at no cost.
Does CONTINUITY need an API key?
No, CONTINUITY runs without API keys or environment variables.
Is CONTINUITY hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install CONTINUITY in Claude Desktop, Claude Code or Cursor?
Open CONTINUITY on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare CONTINUITY with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
