Memory for AI assistants, chatbots, and OpenClaw agents
Out of stealth
The world's No.1 ranking
Memory as a Service company
Ahead of the industry leaders who require you to use more expensive answer models. 10x cheaper for you per query, enabling you to build better systems for lower cost and swap between answer models as needed with no degradation in performance.
Knowledge Graph
Connections, not just embeddings.
m3mory builds an entity graph from every conversation. People, places, projects, preferences. All connected. All searchable.
How it works
Five stages. One API call.
Every recall runs through our proprietary retrieval pipeline. Multiple search strategies, fusion scoring, and intelligent context assembly.
Understand
Analyses the query to determine what kind of memory retrieval is needed
Optimise
Rewrites and expands the query for maximum retrieval accuracy
Search
Runs multiple search strategies in parallel across your knowledge graph
Score
Proprietary fusion algorithm combines results from all search paths.
Assemble
Deduplicates, formats, and trims to your token budget. Quality over quantity
Three lines of code
Simple API. Powerful retrieval.
Two endpoints: ingest and context. The pipeline handles extraction, graphing, scoring, and assembly behind the scenes.
1import { M3mory } from "@m3mory/sdk";23const m3 = new M3mory({ apiKey: process.env.M3MORY_KEY });45// Ingest a conversation6await m3.ingest({7 agentId: "assistant-1",8 userId: "user_abc",9 messages: [10 { role: "user", content: "I just moved to Bristol" },11 { role: "assistant", content: "Welcome to Bristol!" }12 ]13});14// -> 2 memories extracted, 3 entity edges createdBenchmarked, not just marketed
LongMemEval-S Benchmark
The standard measure of AI memory retrieval quality. Higher is better.
Edging ahead of the industry leader. The only system on the leaderboard running gpt-4o-mini end to end including the answer model, potentially 10x savings to your LLM budget.
Pricing
Start free. Scale when ready.
No credit card required. All plans include unlimited storage, unlimited users, and the full retrieval pipeline.
Free
Pro
Scale
Open Source
Built in the open.
Our MCP server, SDKs, and integrations are MIT-licensed. The retrieval engine is proprietary.
@m3mory/mcp-server
Model Context Protocol server. Connect any MCP-compatible agent to m3mory in seconds.
@m3mory/sdk
Official TypeScript/JavaScript SDK. Type-safe, tree-shakeable, zero dependencies.
@m3mory/m3moryclaw-plugin
Drop-in plugin for OpenClaw. Auto-recall before every turn, auto-capture after.