Now in Live BetaFree — No signup required

AI MEMORY
IN 2 LOC

Persistent memory in 2 lines of code
Users stop repeating themselves. Agents pick up where they left off. Works with OpenAI, Claude, and Gemini.

Type a fact about yourself — the AI will remember it across sessions

import { Mnexium } from "@mnexium/sdk";

const mnx = new Mnexium({
  openai: { apiKey: process.env.OPENAI_KEY },
  model: "gpt-4o-mini",
  learn: true,       // Extract memories
  recall: true,      // Inject context
  history: true,     // Prepend chat
});

const alice = mnx.subject("user_123");
const res = await alice.process("My name is Alex");

Provider Agnostic

ChatGPTChatGPT
Anthropic ClaudeAnthropic Claude
Google GeminiGoogle Gemini

The Bridge Between Models & Experiences

Mnexium sits between your AI models and your users, providing unified memory, state management, and identity. Works with OpenAI, Anthropic Claude, and Google Gemini — switch providers without changing your memory layer.

Mnexium architecture diagram showing how it connects end users, agents, and AI models

2 lines of code · Drop-in integration

Memory for AI Apps

Users stop repeating themselves. Agents pick up where they left off. Works with OpenAI, Claude, and Gemini.

Chat History

The raw conversation log — every message sent and received within a session. Used for context continuity.

Learn more →

Agent Memory

Extracted facts, preferences, and context about a user. Persists across all conversations and sessions.

Learn more →

Records

Schema-backed entities (accounts, deals, tickets, tasks) with CRUD, filtering, and semantic search for deterministic app data.

Learn more →

Agent State

Short-term, task-scoped working context for agentic workflows. Tracks task progress and pending actions.

Learn more →

Observability

Full audit trail of every API call, memory creation, and auth event. See what your agent did and why.

Learn more →

How does Mnexium compare?

MnexiumSelf-ManagedVector DBVanilla LLM

Memory

Long-term knowledge that persists across every session and conversation.

Persistent memory across sessions
Automatic fact extraction
Semantic search & recall
Memory versioning & deduplication
Zero-config — works out of the box
Memory decay & relevance scoring

Records

Schema-backed business entities your agents can read, write, and reason over as deterministic application data.

Schema-backed records (CRUD + ownership)
Structured filtering over record fields
Semantic retrieval over records
AI-driven record extraction from chat

Conversations

Full chat history, summarization, and context continuity across sessions.

Conversation history persistence
Chat summarization
User profiles & structured data
Record recall in chat context

Agent Tools

State, prompts, and memory policy management for agentic applications.

Agent state management
System prompt management
Memory policy management

Platform

Infrastructure, observability, and multi-provider support.

Logging & audit trail
Works with OpenAI, Anthropic, Google
One API call to add memory
No infrastructure to manage

How it works

Memory that persists across sessions

Traditional chatbots forget everything the moment a session ends. Users repeat themselves. Agents lose context. Multi-step tasks reset. Mnexium changes this by giving your AI persistent memory that works automatically.

With just a few lines of code, your agent learns from conversations, stores what matters, and recalls relevant context when users return — even days or weeks later. Every memory is scored, searchable, and explainable.

Day 1 — Mnexium learns

User says: "I prefer pescatarian meals."

→ stored as preference with importance 75
Day 7 — Mnexium recalls

User asks: "What should I cook this week?"

→ injects "prefers pescatarian" into context automatically
Under the hood — Mnexium explains

Full observability into what memories were used and why.

Used: mem_abc123 (preference, score 92.5)
Mnexium dashboard showing memory management

The Mnexium dashboard — manage memories, profiles, and observe agent behavior

Simple integration

Add Memory in Seconds

No SDKs required. Just add the mnx object to your existing OpenAI calls. We handle storage, embeddings, and retrieval automatically.

Automatic persistence.
Set log: true and every turn is logged with full context.
History injection.
Enable history: true to prepend prior messages automatically.
Smart memorization.
Let AI decide what's worth remembering with learn: true.
# Search memories by semantic similarity
curl -G "mnexium.com/api/v1/memories/search" \
  -H "x-mnexium-key: $MNX_KEY" \
  --data-urlencode "subject_id=user_123" \
  --data-urlencode "q=favorite food"

{
  "data": [
    {
      "id": "mem_abc123",
      "text": "User loves Italian cuisine",
      "kind": "preference",
      "importance": 75,
      "score": 92.5
    }
  ]
}
// Search memories by semantic similarity
const alice = mnx.subject("user_123");
const results = await alice.memories.search("favorite food");

[
  {
    id: "mem_abc123",
    text: "User loves Italian cuisine",
    kind: "preference",
    importance: 75,
    score: 92.5
  }
]
# Search memories by semantic similarity
alice = mnx.subject("user_123")
results = alice.memories.search("favorite food")

[
  {
    "id": "mem_abc123",
    "text": "User loves Italian cuisine",
    "kind": "preference",
    "importance": 75,
    "score": 92.5
  }
]

Use Cases

Built for Real-World AI Apps

From personalized chatbots to multi-step agents, Mnexium handles the memory layer so you can focus on your product.

Personalized Assistants
Remember user preferences, history, and context across sessions for more consistent, relevant responses.
Record-Aware Workflows
Use structured records (accounts, tickets, tasks, deals) directly in agent decisions and generated responses.
Resumable Multi-Step Tasks
Persist agent state so long-running workflows continue reliably after interruptions and handoffs.
Cross-Channel Continuity
Unify memory and records across chat, email, and app interactions so context stays consistent.

Pricing

Start free, scale as you grow

Generous free tier for developers. Predictable pricing for production workloads.

Beta

Free

Free for beta testers & early customers.

  • Up to 1,000 Memory Actions
  • Up to 10,000 API calls
  • All documented features
  • API - No sign up required
Get Started

Pro & Enterprise

Custom/month

For production apps that need scale and reliability.

Contact Us

Frequently asked questions

How do I integrate Mnexium with my existing code?

Install our Node.js SDK (@mnexium/sdk) or Python SDK (mnexium), or just add an `mnx` object to your existing cURL/HTTP calls. We support OpenAI's Chat Completions and Responses APIs across all approaches.

Do you have official SDKs?

Yes! We offer official SDKs for Node.js (npm install @mnexium/sdk) and Python (pip install mnexium). Both provide a simple, idiomatic interface — initialize the client, create a subject, and call process(). Configuration like learn, recall, and history can be set once at the client level.

What is a memory and how does versioning work?

A memory is a structured record. When new memories conflict with existing ones, the old memory is automatically marked as 'superseded' while the new one becomes 'active'. You can visualize the full evolution chain with Memory Graphs.

What's the difference between Memory, Agent State, and Chat History?

Chat History is the raw conversation log within a session. Agent Memory stores long-term facts about users that persist across all sessions. Agent State is short-term, task-scoped for tracking agent progress and pending actions.

How is Mnexium different from a vector database?

Mnexium is an opinionated memory layer built for AI agents. We handle automatic learning, semantic deduplication, memory versioning, recall scoring, user profiles, governance, and full observability—not just embeddings.

Can I use my own API keys?

Yes. Pass your OpenAI key via x-openai-key, Anthropic key via x-anthropic-key, or Google key via x-google-key. We never store your provider keys—they're used only for the duration of the request.

What models and providers do you support?

We're provider-agnostic. Currently supported: OpenAI ChatGPT, Anthropic Claude, and Google Gemini. Use what you're already used to.

Is my data secure?

Yes. All data is encrypted at rest and in transit. We support scoped API keys with granular permissions (read/write/delete per resource type), and you can revoke access instantly. Full audit logs track every action.

What are User Profiles?

Profiles are business defined and AI-generated summaries of a user. They provide a overview of preferences, facts, and context—useful for personalizing responses without loading all individual memories.

Newsletter

Want product news and updates? Sign up for our newsletter.

We care about your data. Read our privacy policy.

Contact Us

Have questions about Mnexium? Want to discuss integrations?
We'd love to hear from you.

Max 500 characters

Ready to give your AI a memory?

Start building with persistent memory today. Free tier includes everything you need to get started.