🚀 Now in Public Beta

One Memory Layer
For All Your AI Agents

Stop rebuilding context in every agent. AgentMem gives you persistent, searchable memory that syncs across LangChain, CrewAI, OpenAI, Claude, and beyond.

Store and retrieve memories
// Initialize AgentMem
const agentmem = new AgentMem('your-api-key');

// Store a memory
await agentmem.store('User prefers dark mode');

// Search memories with semantic search
const results = await agentmem.search('user preferences');
// → [{ content: 'User prefers dark mode', score: 0.89 }]

// Sync across agents
await agentmem.sync(['agent-1', 'agent-2', 'agent-3']);

Works with your favorite frameworks

🔥 The Problem

  • Every agent starts with zero context
  • Conversations get compacted and memories lost
  • Each framework has its own memory system
  • Local memory = single agent, no sync
  • Context windows fill up constantly

✨ The Solution

  • Persistent: Memories survive restarts
  • Universal: One API for all agents
  • Searchable: Semantic search finds what matters
  • Synced: Share context across agents
  • Simple: API key in 30 seconds

Built for Production

🧠

Semantic Search

Find memories by meaning, not keywords. Powered by vector embeddings.

🔄

Cross-Agent Sync

Share memories between agents. Team context that actually works.

Fast API

<100ms response times. Built on Fastify with edge caching.

🔒

Secure by Default

API key auth, tenant isolation, encrypted at rest.

📊

Usage Analytics

Track memory usage, search patterns, and agent activity.

🌍

Global CDN

Deployed on Railway with Cloudflare proxy. Fast everywhere.

How It Works

1

Register Your Agent

Create an agent and get your API key in seconds.

POST /api/agents/register
2

Store Memories

Store any context your agent learns. Auto-embedded.

POST /api/memories
3

Search & Sync

Retrieve relevant context with semantic search.

POST /api/memories/search

Simple Pricing

Free

$0/mo
  • ✓ 10,000 memories
  • ✓ Semantic search
  • ✓ 3 agents
  • ✓ Community support
Start Free

Enterprise

$199/mo
  • ✓ Everything in Pro
  • ✓ Self-hosted option
  • ✓ Custom integrations
  • ✓ SLA guarantee
  • ✓ Dedicated support
Contact Sales

Get Started in 30 Seconds

$ curl -X POST https://api.agentmem.dev/api/agents/register \

-H "Content-Type: application/json" \

-d '{"name": "my-agent", "framework": "langchain"}'

{"id": "abc123", "apiKey": "am_live_xxx..."}

$ _

That's it. Start storing memories immediately.