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/setupWorks With Your Favorite AI Tools
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/setup02
Connect your AI tool
03
Start building with memory
Free tier · No credit card · 2 memory libraries · 1,000 API calls/month