Getting Started

AgentRecall gives your AI agents persistent memory. Store, retrieve, and manage memories with a simple SDK.

Installation

Python

pip install agentrecall-sdk

Node.js

npm install agentrecall-ai-sdk

Quick Start

Get up and running in 5 lines. No server needed.

from agentrecall_sdk import MemoryStore

store = MemoryStore()  # local mode, no config needed
store.remember("User prefers dark mode", agent="my-agent")
memories = store.recall("theme preferences")

Next Steps