cortex-engine MCP server adds persistent memory and multi-agent support

Persistent memory for AI agents
cortex-engine v0.4.0 is an open-source MCP server that provides persistent long-term memory for AI agents. Unlike typical agents that lose state when sessions end, this tool enables agents to learn and retain information over time.
Core memory tools
The server offers several key functions for MCP-compatible agents:
observe()— records facts in real-timequery()— performs semantic search through past memoriesbelieve()— tracks when understanding of a concept evolvesdream()— consolidates short-term observations into a structured knowledge graph
There are 40+ additional memory tools available. According to the developer, after several months of use, query() can retrieve context from weeks-old sessions that users had forgotten about, with the knowledge graph becoming more useful over time rather than degrading.
Multi-agent support
The latest release adds multi-agent functionality. You can run different agents (like a researcher and a coder) in the same project with isolated memory namespaces. Agents won't share memories unless explicitly configured to collaborate.
Technical implementation
The system is local by default, using SQLite with built-in embeddings and no external services required. It's both LLM and database agnostic, providing flexibility in implementation.
cortex-engine is available on npm as version 0.4.0.
📖 Read the full source: r/clawdbot
👀 See Also

Claude Code Plugin Analyzes Token Waste and Anomalies Locally
A developer built a Claude Code plugin that diagnoses token waste by detecting six anomaly types from local session data. The tool analyzed 8,392 sessions and found 1,015 anomalies, with ExcessiveToolUse being the most common.

Reduce AI Coding Session Costs by 90% with Graph-Based Code Indexing
A developer built a local graph database that indexes a codebase using LLM-generated summaries, cutting Claude Code session costs from $6-10 to cents by avoiding redundant file re-reads.

ClawNet: Peer-to-Peer AI Agent Network Without API Keys
ClawNet is a peer-to-peer network that allows AI agents to collaborate directly without API keys or platform fees. Installation is via a curl script, and features include a task bazaar, shell economy, and knowledge network.
AIttache: A Read-Only MCP Server That Can't Nuke Your Prod
AIttache is an MCP server with 25+ read-only connectors (terminal, servers, weather, Steam) that physically cannot modify anything — built to give LLMs log context without autonomy.