Now in public beta

Your agents finally remember everything

Persistent, semantic memory for AI agents. Store what they learn, recall it naturally — with a 3-line SDK integration.

S
M
K
T

500+ agents remembering daily

memory-bank.ts
1import { MemoryBank } from "@agentmemorybank/sdk"
2
3const memory = new MemoryBank({
4  apiKey: process.env.MEMORY_BANK_KEY,
5  agentId: "support-agent-001"
6})
7
8// Store a memory
9await memory.store(
10  "Customer prefers technical deep-dives"
11)
12
13// Recall it later
14const results = await memory.recall(
15  "What are this customer's preferences?"
16)
17// → [{ content, confidence, ... }]
Memory stored & indexed

→ Stored 1 memory (247 tokens). Semantic index updated.

Features

Memory that works the way agents think

Built from the ground up for AI agents, not humans with keyboards.

Semantic Memory

Store memories as natural language. Our vector embeddings let agents recall relevant facts using plain English queries.

Session Persistence

Agents pick up exactly where they left off. No re-explaining context. Works across restarts, deploys, and time zones.

Cross-Agent Sharing

Team memory lets agents collaborate. Agent A learns something, Agent B recalls it instantly. No duplication, no blind spots.

Memory Compaction

Automatic summarization of old memories keeps context windows lean. Important facts stay; noise fades. Always relevant.

Versioning & Rollback

Every memory has a version history. Made a mistake? Roll back to any previous version with a single API call.

SDK-First Design

TypeScript SDK with full type safety. Works with LangChain, AutoGPT, Custom agents, anything that speaks REST.

How It Works

From install to memory in 60 seconds

01

Install the SDK

Three lines of code to add persistent memory to any agent.

02

Configure your agent

One API key, one agent ID. Get a free key from the dashboard.

03

Start storing memories

Agents store facts naturally as they work. No extra prompts needed.

04

Recall instantly

Ask in plain English. Get back relevant memories ranked by relevance.

Your AI Agent

Any LLM-powered agent

MemoryBank SDK

store() → recall() → forget()

Vector Store

Semantic Index

Session Store

State + Metadata

Pricing

Pay per agent, scale as you grow

No hidden fees. No per-query charges. Just predictable per-agent pricing.

Starter

$29/agent/month
1 agent
1,000 memories / mo
30-day recall
1 agent
1,000 memories / month
30-day memory recall
Semantic search
Basic dashboard
Email support
Most Popular

Team

$79/agent/month
5 agents
Shared team memory
Unlimited recall
5 agents
Unlimited memories
Unlimited recall
Team knowledge base
Cross-agent sharing
Memory compaction
Priority support

Business

$199/agent/month
Unlimited agents
Enterprise storage
Full versioning
Unlimited agents
Unlimited memories
Full version history
Rollback any memory
Custom retention policies
Dedicated support
SLA guarantee

All plans include a 14-day free trial. No credit card required.

Quickstart

Up and running in 60 seconds

terminalbash
1npm install @agentmemorybank/sdk