AIAny
AI Infra2025
Icon for item

Memori

An open-source memory layer that turns agent runs and conversations into structured, persistent state recallable across sessions. Captures facts, events, preferences, and relationships automatically; LLM-agnostic with SDK and MCP integration.

Introduction

Most agents start every session amnesiac: you either re-paste history into the context window (expensive, lossy) or bolt on a vector store and hope retrieval surfaces the right thing. Memori reframes memory as structured state rather than a pile of retrievable chunks — it parses conversations and tool calls into typed facts, events, preferences, relationships, and skills, so recall is targeted instead of a fuzzy similarity search.

The number that makes the case: on the LoCoMo benchmark it reports 81.95% accuracy at an average of 1,294 tokens per query. That second figure is the real point — instead of stuffing the whole transcript back in, it injects only the slice that matters, which is what keeps long-running agents both accurate and cheap.

What Sets It Apart
  • Memory is typed, not just embedded — attributes, events, facts, relationships, preferences, and skills are tracked distinctly, so you can reason over what kind of thing was remembered, not just nearest-neighbor text.
  • Genuinely LLM-agnostic: works across OpenAI, Anthropic, Bedrock, Gemini, DeepSeek, and Grok, so memory isn't coupled to one provider.
  • Two ways in — direct SDK (Python and TypeScript) for app builders, or MCP for drop-in persistence in Claude Code, Cursor, and similar clients without writing integration code.
Who It's For

A strong fit if you're shipping production agents that must remember users or accumulate knowledge across sessions, and you care about token cost at scale. Look elsewhere if you need a single-shot chatbot with no continuity, or if your memory needs are simple enough that a basic vector store and a system prompt already cover them — Memori's structured-state model is overhead you won't recoup at that size.

Information

  • Websitegithub.com
  • OrganizationsMemoriLabs
  • AuthorsMemori Labs
  • Published date2025/07/24

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).