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

Local-first AI tax preparer with encrypted PII built on MCP
A developer built a tax filing extension for Crow that encrypts all PII with AES-256-GCM and works with any MCP-compatible client including Claude, ChatGPT, Gemini, or local models through Ollama. The system handles 1040, Schedule 1, HSA (8889), education credits (8863), self-employment (Schedule C/SE), and capital gains (Schedule D) calculations locally.

civStation: Open-Source VLM Harness for Natural Language Control of Civilization VI
civStation is an open-source computer-use stack that enables voice and natural language control of Civilization VI, translating high-level strategy commands into UI actions through a VLM-based observation and execution loop.

Hubcap Bridge: Persistent Two-Way Messaging Between CLI and Browser JavaScript via CDP
Hubcap Bridge is a new feature in the Hubcap CLI tool that creates a persistent two-way message channel between local processes and JavaScript running in browser pages via the Chrome DevTools Protocol. It enables Claude Code skills to interact with web apps through their internal JavaScript APIs without requiring public API access.

sourcecode: Open-Source CLI to Compress Large Java/Spring Monorepos for Claude
sourcecode CLI reduces a ~4k-file Java/Spring monorepo from ~3M tokens to 1.7k tokens (compact mode). Currently focuses on context compression, git hotspot detection, and symbol lookup.