For Developers

Add Persistent Memory to Your AI Tools in 5 Minutes

One command to connect any MCP-compatible AI tool to your personal memory library. Works with Claude Code, Cursor, Windsurf, and more.

npx @awareness-sdk/setup

Works With Your Favorite AI Tools

Claude Code
Cursor
Windsurf
Cline
Manus
Gemini
ChatGPT
Codex
Kiro
Trae
Zed
JetBrains
Antigravity
GitHub Copilot
Devin
OpenClaw
LangChain
CrewAI
PraisonAI
Augment

One Command Setup

Run this in any directory to configure your AI tools automatically.

// npm install @awareness-sdk/memory-cloud openai
import OpenAI from "openai";
import { MemoryCloudClient, AwarenessInterceptor } from "@awareness-sdk/memory-cloud";

const client = new MemoryCloudClient({
  baseUrl: "https://awareness.market/api/v1",
  apiKey: "YOUR_API_KEY",
});

// Wrap your LLM client — memory auto-injects on every call
const interceptor = await AwarenessInterceptor.create({
  client,
  memoryId: "YOUR_MEMORY_ID",
  autoRemember: true,
});

const oai = new OpenAI();
interceptor.wrapOpenAI(oai);

// Use as normal — your AI now has persistent memory
const response = await oai.chat.completions.create({
  model: "gpt-4o-mini",
  messages: [{ role: "user", content: "What did we decide about auth?" }],
});

01

Run the setup command

npx @awareness-sdk/setup

02

Connect your AI tool

03

Start building with memory

Start Free, Scale as You Grow

Free tier · No credit card · 2 memory libraries · 1,000 API calls/month