ContextKeep
by mordang7
Overview
Provides a standalone, persistent, and searchable long-term memory server for AI agents and tools, compatible with the Model Context Protocol (MCP).
Installation
/absolute/path/to/ContextKeep/venv/bin/python /absolute/path/to/ContextKeep/server.pySecurity Notes
The `webui.py` Flask application is configured with `debug=True` when run directly (e.g., `python webui.py`). Running a Flask application in debug mode in a production or network-accessible environment is a critical security vulnerability, as it can expose sensitive information and allow arbitrary code execution. Both the MCP server and WebUI bind to `0.0.0.0` by default, making them accessible from any network interface without explicit authentication. Data is stored locally in plain JSON files.
Similar Servers
mcp-memory-service
A Model Context Protocol (MCP) server providing persistent, semantic memory storage and retrieval capabilities for AI agents. It supports lightweight semantic reasoning (contradiction, causal inference), content chunking, multi-backend storage (SQLite-vec, Cloudflare, Hybrid), autonomous memory consolidation (decay, association, clustering, compression, forgetting), and real-time updates via SSE. It's designed for token-efficient interaction with LLMs.
copilot-memory-store
A persistent local memory store for AI assistants and coding agents, enabling context engineering by saving, searching, and compressing developer-specific knowledge across conversations.
simple-memory-mcp
A Model Context Protocol (MCP) server for persistent memory storage, providing intelligent tagging and full-text search for AI assistants to remember context across conversations.
contextfs
Provides a universal, persistent, and searchable memory layer for AI agents and developer tools, enabling cross-repository context management, semantic search, session tracking, and structured knowledge recall.