continuity-mcp-server
Verified Safeby rotkonetworks
Overview
A persistence layer for Claude conversations, designed to provide episodic memory, searchable history, depth tracking, and context bootstrapping to mitigate the problem of LLMs losing past insights.
Installation
node dist/index.jsEnvironment Variables
- CONTINUITY_DB_PATH
- BOOTSTRAP_PATH
Security Notes
The server uses prepared statements (`db.prepare`) to prevent SQL injection vulnerabilities. Input validation is performed using Zod schemas. Communication is via standard I/O (`StdioServerTransport`), reducing direct network attack surface from the server itself. No hardcoded sensitive information or use of `eval` was identified. The use of SQLite for data storage implies the database file itself might need access controls.
Similar Servers
memory-mcp-server-go
A Model Context Protocol server providing knowledge graph management capabilities for LLMs to maintain memory across conversations.
mcp-memory-keeper
Provides persistent context management for Claude AI coding assistants, ensuring work history, decisions, and progress are preserved across sessions and context limits.
claude-memory-mcp
Provides local, persistent, and searchable memory for AI assistants like Claude Desktop, enabling them to store and recall information efficiently.
memcord
A privacy-first, self-hosted MCP server for organizing chat history, summarizing messages, and searching past conversations using AI, particularly for Claude interactions.