streamable-httpMITupdated 3mo ago
The portable identity layer that gives every AI agent a shared, persistent memory of you. Open source. Self-hostable. Yours.
What can you do with Epitome?
The Problem
Every AI conversation starts from zero. You repeat yourself to every agent ā your name, your preferences, your allergies, your tech stack. Chat history is siloed per app. There's no portable memory layer.
Epitome fixes this. One database that every AI agent shares, so they all remember you.
Quickstart
Hosted (fastest)
- Sign up at epitome.fyi
- Go to Settings ā API Keys and copy your MCP URL
- Connect an AI agent ā done
Self-Hosted
git clone https://github.com/gunning4it/epitome.git
cd epitome
cp .env.example .env # edit with your credentials
docker compose up -d
Open localhost:5173 and sign in with Google or GitHub OAuth.
Connect an AI Agent
Get your API key from Settings ā API Keys in the dashboard (hosted or self-hosted).
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"epitome": {
"url": "https://epitome.fyi/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Claude Code
claude mcp add --transport http --header "Authorization: Bearer YOUR_API_KEY" epitome https://epitome.fyi/mcp
Self-Hosted
For self-hosted, replace https://epitome.fyi with http://localhost:3000.
Epitome exposes 3 MCP tools ā recall, memorize, and review. See the full tool reference.
Who This Is For
- AI developers building agents that need persistent user memory
- Power users who want every AI to remember them across platforms
- Self-hosters who want full data ownership ā no cloud required
Use Cases
- Your meal-tracking agent remembers your allergies
- Your coding assistant knows your stack, your patterns, your team
- Your calendar agent knows your family, your priorities, your routines
- Every new AI tool you try already knows you on day one
Why Epitome?
| Chat History | Vector DB | Note Apps | Epitome | |
|---|---|---|---|---|
| Portable identity | ā | |||
| Multi-agent shared memory | ā | |||
| Knowledge graph | ā | |||
| Consent & audit per agent | ā | |||
| Per-user schema isolation | ā | |||
| Structured + semantic data | partial | ā | ||
| Self-hostable | ā | ā |
The Five Layers
| # | Layer | Description |
|---|---|---|
| 01 | Personal Database | Structured tables, vector semantic memory, and key-value storage. Your data lives in PostgreSQL ā queryable, exportable, yours. |
| 02 | Portable Identity | A structured profile any AI agent reads instantly. Name, preferences, relationships ā zero cold start, every conversation. |
| 03 | Memory Quality | Confidence scoring, source attribution, and lifecycle management. Memories earn trust through reinforcement, not blind faith. |
| 04 | Knowledge Graph | Entities with typed, weighted edges. People, places, concepts ā connected in a graph that grows with every interaction. |
| 05 | Consent & Audit | Per-table permissions and an append-only activity log. You control exactly what each agent can see and do. |
Architecture
AI Agent āāā MCP (Streamable HTTP) āāā Hono API āāā PostgreSQL
ā
per-user schema
isolation
Each user gets their own PostgreSQL schema (user_{id}) ā not row-level security, full schema-level isolation. Cross-schema access is impossible at the SQL level.
See EPITOME_TECH_SPEC.md for the full architecture.
Security & Privacy
- You own your data ā self-host or use the hosted service
- Per-user PostgreSQL schema isolation ā not row-level security, full schema separation
- Per-agent consent rules ā you control what each agent can read and write
- Append-only audit log ā every access is recorded
- GDPR-ready ā export or delete all your data at any time
Tech Stack
| Component | Technology |
|---|---|
| Runtime | Node.js 22 LTS |
| API | Hono |
| Database | PostgreSQL 17 + pgvector |
| MCP | @modelcontextprotocol/sdk |
| Frontend | React 19 + Tailwind CSS 4 + shadcn/ui |
| Validation | Zod |
| Testing | Vitest |
Documentation
- Quick Start ā Get running in minutes
- JavaScript SDK ā Build with
@epitomefyi/sdk - npm Package ā Install and version history
- AI SDK Tools ā
searchMemory,saveMemory,getUserContextfor tool-calling - API Reference ā REST endpoint documentation
- MCP Tools ā All 3 MCP tools explained
- Architecture ā Full technical specification
- Data Model ā Every table, column, and constraint
- Self-Hosting Guide ā Docker Compose deployment
- Security ā Isolation, consent, and audit
Contributing
Contributions are welcome! See CONTRIBUTING.md for guidelines.
git clone https://github.com/gunning4it/epitome.git
cd epitome && cp .env.example .env
docker compose up -d
Then open a PR ā we're happy to help with your first contribution.
License
Install
Add Epitome to your client. Pick the one you use.
claude mcp add --transport http epitome https://epitome.fyi/mcpcodex mcp add epitome --url https://epitome.fyi/mcp{
"mcpServers": {
"epitome": {
"url": "https://epitome.fyi/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"epitome": {
"type": "http",
"url": "https://epitome.fyi/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"epitome": {
"url": "https://epitome.fyi/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"epitome": {
"serverUrl": "https://epitome.fyi/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance13/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 101 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Feb 19, 2026 |