cortexgraph
Verified Safeby prefrontal-systems
Overview
CortexGraph is an MCP server that provides short-term memory for AI assistants, featuring temporal decay, reinforcement, and automatic promotion to long-term storage.
Installation
python -m cortexgraph.serverEnvironment Variables
- CORTEXGRAPH_STORAGE_PATH
- LTM_VAULT_PATH
- CORTEXGRAPH_ENABLE_EMBEDDINGS
- CORTEXGRAPH_EMBED_MODEL
- CORTEXGRAPH_STORAGE_BACKEND
Security Notes
The project demonstrates strong proactive security measures, including explicit secrets detection (`src/cortexgraph/security/secrets.py`), robust file/directory permission hardening (`src/cortexgraph/security/permissions.py`), and path traversal prevention (`src/cortexgraph/security/paths.py`). It utilizes environment variables for configuration and applies secure permissions at server initialization. External CLI calls (`cortexgraph.agents.beads_integration.py`) are handled safely using argument lists. Rate limiting is implemented for API endpoints. No usage of `eval()` or code obfuscation was found.
Similar Servers
mcp-memory-service
A comprehensive, AI-enhanced memory service for AI agents, enabling semantic search, intelligent consolidation, and multi-backend storage via a token-efficient API and MCP protocol.
context-sync
Providing persistent memory and context synchronization for AI development across various tools and projects.
memory-mcp
This MCP server provides memory storage and intelligent context window caching capabilities for Large Language Model (LLM) conversations, including archiving, retrieval, and summarization.
claude-conversation-memory-mcp
Provides long-term memory for AI coding assistants by indexing conversation history with semantic search, decision tracking, and cross-project search.