Epitome gives every AI agent shared, persistent memory of you. It stores memories, facts, and preferences in a personal knowledge graph, so any AI tool you use already knows your context. Connect via MCP using Streamable HTTP — no local install needed.
Overview
What is Epitome?
Epitome is a personal AI memory layer. It gives every AI agent you use shared, persistent memory of you — your preferences, habits, history, and relationships — stored in a knowledge graph that any MCP-compatible client can access.
No local install required. Connect via Streamable HTTP.
9 MCP Tools
| Tool | Description |
|---|---|
| get_user_context | Load your profile, top entities, and recent context. Call at the start of every conversation. |
| update_profile | Update profile fields — allergies, preferences, timezone, family, job, etc. Deep-merges with existing data. |
| save_memory | Save experiences, notes, or reflections as searchable vector memories. Automatically extracts entities into the knowledge graph. |
| search_memory | Semantic search across saved memories using vector similarity. |
| add_record | Log structured data (meals, workouts, expenses, medications, habits). Tables and columns auto-create on the fly. |
| list_tables | Discover what data tables exist and their schemas. |
| query_table | Query records with filters or sandboxed SQL. Supports pagination and aggregations. |
| query_graph | Traverse the knowledge graph — find relationships, patterns, and multi-hop connections. |
| review_memories | Detect and resolve memory contradictions to keep data accurate. |
Setup
{
"mcpServers": {
"epitome": {
"type": "streamable-http",
"url": "https://epitome.fyi/mcp",
"headers": {
"Authorization": "Bearer <YOUR_API_KEY>"
}
}
}
}
Get your API key at https://epitome.fyi/dashboard/settings
Key Features
- Knowledge Graph — entities and relationships extracted automatically from every interaction
- Semantic Search — vector-powered memory recall across all saved content
- Structured Data — track anything with auto-created tables and columns
- Contradiction Detection — automatic quality checks keep your memory accurate
- Per-User Isolation — each user gets their own PostgreSQL schema, not just row-level security
Server Config
{
"mcpServers": {
"epitome": {
"type": "streamable-http",
"url": "https://epitome.fyi/mcp",
"headers": {
"Authorization": "Bearer <YOUR_API_KEY>"
}
}
}
}