
context-sync
by Intina47·★ 124·Score 50
Local persistent memory store for LLM applications providing project continuity through MCP tools.
Overview
Context Sync is a MCP server that provides a persistent memory layer for AI coding tools. It stores project context including identity, tech stack, active work, decisions, and constraints to maintain session continuity. The server exposes tools like set_project, recall, read_file, search, and git to help AI systems maintain context between conversations.
Try asking AI
After installing, here are 7 things you can ask your AI assistant:
When to choose this
Choose Context Sync when working with multiple coding sessions on the same project and need persistent memory for project context, decisions, and constraints without relying on the LLM's short-term memory.
When NOT to choose this
Avoid if you need write access to Notion or require bidirectional data synchronization between your project and external systems.
Tools this server exposes
8 tools extracted from the READMEset_projectSets the project path for Context Sync to work with
rememberStores information about decisions, constraints, or caveats in the project memory
recallRetrieves previously stored context and memories for the current project
read_fileReads the content of a specific file in the project
searchSearches through files in the project for specific patterns or content
structureExplores and analyzes the project structure at a specified depth
gitProvides git-related analysis and context for the project
notionPerforms read-only searches and reads from Notion (if configured)
Comparable tools
Installation
Installation
Install globally:
npm install -g @context-sync/serverAuto-configuration runs during global install. After install, restart your AI tool.
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"context-sync": {
"command": "context-sync",
"args": []
}
}
}VS Code (GitHub Copilot)
Context Sync should be detected automatically when installed globally.
FAQ
- How does Context Sync maintain session continuity?
- It stores project context that matters (decisions, constraints, work progress) and makes it retrievable through MCP tools like 'recall' and 'remember'.
- What AI tools support Context Sync?
- Context Sync supports Claude Desktop, Cursor, VS Code with GitHub Copilot, Continue.dev, Zed, Windsurf, Codeium, TabNine, Codex CLI, Claude Code, and Antigravity.
- Is Notion integration read-only?
- Yes, Notion support is intentionally read-only at the tool surface with tools like 'notion({ action: "search", query: "..." })' and 'notion({ action: "read", pageId: "..." })'.
On Hacker News
Recent discussion from the developer community.
- Story by mambacodes · 2025-10-23
- Story by mambacodes · 2025-10-22
Compare context-sync with
Last updated · Auto-generated from public README + GitHub signals.