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

Implementing AI Checks with Continue for Source-Controlled PR Reviews
Continue integrates AI checks directly into your pull request workflow by using markdown files as source-controlled checks, visible through GitHub status checks.

Memento Vault: Local Tool for Persistent Context in Claude Code Sessions
Memento Vault is a set of hooks that automatically captures session transcripts, scores them, and stores atomic notes in a local git repo. It provides zero-cost retrieval via BM25 + vector search with 472ms average latency and injects relevant context at session start, on every prompt, and on file reads.

Real-Time Desktop Overlay for Monitoring Claude Code Usage Limits
The open-source desktop overlay displays Claude Code usage limits in real-time, eliminating the need to repeatedly type '/usage'.

TeamHero v2.6.1: Open-Source Platform for Managing Claude AI Agents
TeamHero v2.6.1 is a local-first, open-source platform that creates a managed team of Claude agents with features like autopilot mode, subtask nesting, flow views, and persistent memory. The tool runs on Node.js with a vanilla HTML/CSS/JS dashboard and requires no database.