Your life, in one searchable place.
Personify ingests every export you have — chats, mail, code, notes — into a Postgres vault on your laptop. Search it, embed it, plug it into Claude.
git clone https://github.com/trigga6006/personify.git && cd personify && npm run setupDashboard
Personal data ingested from your services. The protagonists are the numbers.
- Gmail12,834
- ChatGPT8,421
- Discord7,612
- X (Twitter)5,247
- Claude4,218
- Notion1,893
- GitHub542
- Files318
| id | export | parser | status | seen | inserted | skipped | started |
|---|---|---|---|---|---|---|---|
| 14 | 12 | gmail · v0.3.1 | ok | 12,968 | 12,834 | 134 | 1d ago |
| 13 | 11 | discord · v0.2.0 | ok | 7,740 | 7,612 | 128 | 1d ago |
| 12 | 10 | notion · v0.1.2 | ok | 1,924 | 1,893 | 31 | 2d ago |
| 11 | 9 | chatgpt · v0.1.0 | ok | 8,512 | 8,421 | 91 | 3d ago |
| 10 | 8 | claude · v0.1.0 | ok | 4,287 | 4,218 | 69 | 4d ago |
Eight sources today.
Plug in the exports you already have. Add a parser for anything we missed.
Logos are property of their respective owners. Personify is not affiliated with or endorsed by these companies. Logos used solely to indicate supported import formats.
View all sourcesFrom export to queryable in one command.
Drop the ZIP into your vault. Personify parses, deduplicates, indexes for full-text search, and stages it for embeddings — in one transaction. Raw bytes are SHA-256 verified and never mutated.
$ vault add-export --source chatgpt \--path ./chatgpt.zip --account me→ stored · sha256 verified$ vault ingest --source chatgpt→ 18,422 items · 142 deduped · 0 errors


Eight services. One schema. Vaults when you need them.
Every parser produces the same shape: items with source, account, ts, content_hash, and a metadata blob. Query across sources inside a vault, or split work and personal into separate vault databases.
Dedup is keyed on (source, account, native_id) with content-hash fallback, so the same export imported twice produces zero duplicates.
Search that knows what you meant.
Postgres full-text gets you keyword precision. pgvector cosine on all-MiniLM-L6-v2 embeddings (384-dim) gets you the conversation you can’t quite remember. Both run on your machine. No outbound API calls.
$ vault search "that conversation about pgvector"→ 14 hits across chatgpt, claude, github→ chatgpt/2024-08-12 cosine vs L2 distance→ claude/2024-09-03 pgvector index tuning→ github/personify services/search.py:48


Your data never leaves your laptop.
Postgres in Docker. pgvector for embeddings. Sentence-transformers running on your CPU, CUDA, or DirectML — whichever you have. No SaaS, no telemetry on your queries, no key to lose.
- Raw exports SHA-256 verified, copied (never moved), never mutated.
- Embeddings computed locally — GPU acceleration where available.
- Multiple vaults: keep work and personal in separate databases.
A graph of you.
People, projects, companies, tools, ideas — extracted from your items and linked together with evidence. 22 entity types, 18 relationship types, every edge backed by a quote.

Plug it into Claude.
Personify ships a read-only MCP server over stdio for Claude Desktop, plus a UI-gated HTTP MCP transport for local clients. Your assistant gets full-text and semantic search, the entity graph, and item retrieval — all scoped to your active vault.
{"mcpServers": {"personify": {"command": "vault","args": ["mcp"]}}}

Install Personify.
One setup command, one local app, your vaults.
git clone https://github.com/trigga6006/personify.git && cd personify && npm run setupv0.1.0 · MIT licensed · made for your laptop