copilot-memory-store
Verified Safeby timothywarner-org
Overview
A persistent local memory store for AI assistants and coding agents, enabling context engineering by saving, searching, and compressing developer-specific knowledge across conversations.
Installation
npm run mcpEnvironment Variables
- DEEPSEEK_API_KEY
- DEEPSEEK_BASE_URL
- DEEPSEEK_MODEL
- MEMORY_PATH
- MEMORY_LOCK_PATH
Security Notes
The server uses stdio for core MCP communication, limiting network exposure. It explicitly warns against storing sensitive data in its plaintext local JSON memory file. File locking is implemented for concurrent write safety. Optional integration with DeepSeek LLM involves external API calls (via HTTPS), but requires an API key and is clearly opt-in. No hardcoded secrets or 'eval' calls were found. The security model is transparent about its limitations (e.g., no encryption at rest, no authentication).
Similar Servers
mem-agent-mcp
Provides a Model Context Protocol (MCP) server for a memory agent, enabling LLMs to interact with an Obsidian-like memory system for contextual assistance and RAG.
memory-mcp-server-go
A Model Context Protocol server providing knowledge graph management capabilities for LLMs to maintain memory across conversations.
savecontext
Provides persistent memory, issue tracking, and project planning for AI coding assistants via the Model Context Protocol (MCP).
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.