Supermemory - AI를 위한 메모리 & 컨텍스트 엔진

AI 메모리 벤치마크 3관왕 (LongMemEval, LoCoMo, ConvoMem). 대화를 기억하고 사용자 프로필을 자동 구축하는 컨텍스트 레이어.


핵심 요약

  • 3대 벤치마크 #1 — LongMemEval 81.6%, LoCoMo, ConvoMem 모두 1위
  • 올인원 컨텍스트 스택 — Memory + RAG + User Profiles + Connectors + File Processing
  • ~50ms 응답 — 사용자 프로필 한 번에 조회
  • OpenClaw/Claude Code 플러그인 공식 지원

주요 기능

기능설명
🧠 Memory대화에서 팩트 추출, 시간 변화/모순 처리, 자동 망각
👤 User Profiles정적 팩트 + 최근 활동 자동 유지, ~50ms 조회
🔍 Hybrid SearchRAG + Memory 통합 쿼리
🔌 ConnectorsGoogle Drive, Gmail, Notion, OneDrive, GitHub 실시간 동기화
📄 Multi-modal ExtractorsPDF, 이미지(OCR), 비디오(전사), 코드(AST 청킹)

벤치마크 성과

벤치마크측정 항목결과
LongMemEval장기 메모리 + 지식 업데이트81.6% — #1
LoCoMo확장 대화 팩트 회상#1
ConvoMem개인화 & 선호 학습#1

아키텍처

Your App / AI Tool
       ↓
  Supermemory
       │
       ├── Memory Engine     — 팩트 추출, 업데이트 추적, 모순 해결
       ├── User Profiles      — 정적 팩트 + 동적 컨텍스트
       ├── Hybrid Search      — RAG + Memory 통합
       ├── Connectors         — Google Drive, Gmail, Notion, GitHub...
       └── File Processing    — PDF, 이미지, 비디오, 코드 → 검색 가능

사용 방법

1. 일반 사용자 (앱)

2. 개발자 (API)

npm install supermemory  # 또는: pip install supermemory
import Supermemory from "supermemory";
 
const client = new Supermemory();
 
// 저장
await client.add({
  content: "User loves TypeScript and prefers functional patterns",
  containerTag: "user_123",
});
 
// 프로필 + 검색 한 번에
const { profile, searchResults } = await client.profile({
  containerTag: "user_123",
  q: "What programming style does the user prefer?",
});
 
// profile.static → 장기 팩트
// profile.dynamic → 최근 컨텍스트

3. MCP 서버 (Claude Code, Cursor, OpenClaw)

npx -y install-mcp@latest https://mcp.supermemory.ai/mcp --client claude --oauth=yes

MCP 도구:

도구기능
memory정보 저장/삭제
recall메모리 검색
context전체 프로필 주입

공식 플러그인


Memory vs RAG

구분RAGMemory
반환문서 청크사용자 팩트
상태Stateless시간에 따라 변화
예시”배포 가이드 검색""내 배포 선호 remembered”

Supermemory는 기본적으로 둘 다 제공.


MemoryBench

오픈소스 메모리 벤치마크 프레임워크. Supermemory, Mem0, Zep 등을 비교:

bun run src/index.ts run -p supermemory -b longmemeval -j gpt-4o -r my-run

빠른 참조

항목
스타17,134
포크1,695
생성일2024-02-27
문서https://supermemory.ai/docs
콘솔https://console.supermemory.ai
Discordhttps://supermemory.link/discord

관련 노트


Sources