post-cortex
Verified Safeby julymetodiev
Overview
Post-Cortex transforms ephemeral AI conversations into persistent, searchable knowledge, enabling AI assistants to maintain memory across sessions with semantic search and automatic knowledge graph construction.
Installation
pcxEnvironment Variables
- PC_HOST
- PC_PORT
- PC_DATA_DIR
- RUST_LOG
Security Notes
The server is built in Rust, which offers strong memory safety, and explicitly states 'zero external API calls' for privacy. Persistence uses RocksDB locally. The daemon exposes an HTTP/SSE API (default 127.0.0.1:3737) and uses `CorsLayer::permissive()`, which allows requests from any origin. While this might be acceptable for a local/internal AI assistant tool, it should be noted if considering wider network deployment. Input content lengths are truncated to prevent some resource exhaustion issues. No obvious hardcoded secrets or 'eval'-like dangerous patterns were 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.
cortexgraph
CortexGraph is an MCP server that provides short-term memory for AI assistants, featuring temporal decay, reinforcement, and automatic promotion to long-term storage.
Simple-Memory-Extension-MCP-Server
A persistent key-value memory store for AI agents, designed to extend context windows and enable semantic search over stored memories.