kept

by egroup-labsVerified

Search, archive, and recall your AI conversations. ChatGPT, Claude, Gemini, Grok, Kimi. Local-first, MIT licensed.

121
Stars
8
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/egroup-labs/kept

Getting Started

Guides for using skills like kept.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Kept

Kept - Your AI chats, saved as Markdown locally with no cloud | Product Hunt

Kept archival illustration

Kept saves your AI conversations as local Markdown files, then gives you a desktop app to search, browse, connect, and reuse them.

It works with ChatGPT, Claude, Gemini, Grok, and Kimi. Your archive lives on your machine under ~/.kept/, with an Obsidian-compatible vault plus local indexes for full-text search, topics, projects, and graph views.

Quick Install | Download | Setup | Build from source | MCP server

Why Kept

AI chats often become working memory: debugging trails, research notes, product decisions, prompts, snippets, and half-finished ideas. Most of that history stays inside vendor UIs.

Kept turns it into files you own.

  • Plain Markdown, grouped by provider.
  • Fast local search with SQLite FTS5.
  • Graph and topic views for finding connections across old conversations.
  • Optional chat over your own archive using the model provider you configure.
  • An MCP server so coding agents can read, search, and manage the vault.

How It Works

Chromium browser extension
  -> reads conversations from provider API endpoints using your signed-in session
  -> normalizes messages and supported image assets
  -> sends them to the Kept desktop app on http://localhost:18241

Kept desktop app
  -> writes Markdown files to ~/.kept/vault/
  -> indexes content in SQLite
  -> builds a local knowledge graph in CozoDB
  -> exposes search, graph, project, export, and agent tools

MCP server
  -> lets Claude Code, OpenClaw, and other MCP clients work with the vault

Kept does not scrape rendered chat pages. The extension syncs conversation data from provider API responses and hands the normalized payload to the local app.

Supported Providers

ProviderSyncNotes
ChatGPTYesFull conversations, streaming history, branch-aware saves
ClaudeYesFull conversations and streaming history
GeminiYesBest effort; Google's API format changes often
GrokYesIncludes supported image assets
KimiYesUses the Kimi auth helper included in the extension

Provider APIs are private and can change without notice. Kept keeps the archive as plain files so your saved conversations stay readable even if an adapter needs an update.

Quick Install

Windows PowerShell:

irm https://kept.work/install.ps1 | iex

macOS and Linux:

curl -fsSL https://kept.work/install.sh | bash

The installer downloads the latest GitHub Release, installs the desktop app, and extracts the Chromium extension to a local folder. Browsers still require you to load the extension manually in Developer Mode.

The same scripts can be run directly from GitHub:

irm https://raw.githubusercontent.com/egroup-labs/kept.work/main/scripts/install.ps1 | iex
curl -fsSL https://raw.githubusercontent.com/egroup-labs/kept.work/main/scripts/install.sh | bash

Download

Desktop builds are published on GitHub Releases.

Current release targets:

  • macOS Apple Silicon: .dmg
  • Windows x64: NSIS .exe installer
  • Linux x64: .deb and .AppImage

The release also includes the Chromium extension package. Until the Web Store listing is live, install the extension in developer mode.

Setup

1. Install The Desktop App

Use the Quick Install command above, or download the build for your OS from Releases, install it, and launch Kept.

On first launch, Kept creates:

~/.kept/
  vault/
  index.db
  kg.db/
  config.toml
  token

The app also starts a local server on http://localhost:18241. The browser extension uses this local server to send conversations into the vault.

2. Load The Browser Extension

Kept supports Chromium-based browsers: Chrome, Brave, Edge, Vivaldi, Arc, Opera, and Chromium.

  1. Extract the extension from the release, or use extension/ from this repo.
  2. Open your browser's extensions page, for example chrome://extensions.
  3. Enable Developer Mode.
  4. Click Load unpacked.
  5. Select the extension/ directory.

3. Connect The Extension

With the Kept app running, open this page in the same browser:

http://localhost:18241/connect

That page gives the extension its per-install token. After that, use the extension popup or Kept onboarding flow to sync your providers.

Vault Layout

Kept writes conversations as Markdown with YAML frontmatter:

~/.kept/vault/
  chatgpt/
    2026-05-02_optimizing-cuda-kernel.md
  claude/
    2026-05-02_kept-readme-draft.md
  gemini/
  grok/
  kimi/

You can open ~/.kept/vault/ directly in Obsidian, VS Code, or any editor. The files are the source of truth; the search and graph databases can be rebuilt from them.

MCP Server

mcp/ is an MCP server named kept-vault-server. It lets agentic clients list, read, write, search, rename, and delete files in your Kept vault.

Inside Claude Code:

/plugin marketplace add egroup-labs/kept.work
/plugin install kept-vault@kept-plugins

One-line installer for Linux and macOS:

bash <(curl -fsSL https://raw.githubusercontent.com/egroup-labs/kept.work/main/scripts/install-kept-mcp.sh)

PowerShell:

& ([scriptblock]::Create((irm https://raw.githubusercontent.com/egroup-labs/kept.work/main/scripts/install-kept-mcp.ps1)))

Set KEPT_VAULT_PATH if your vault is not at ~/.kept/vault.

Tools exposed by the server:

  • list_vault
  • list_directory
  • read_file
  • write_file
  • update_file
  • delete_file
  • move_file
  • grep_vault

Build From Source

Requirements:

  • Node.js 20+
  • Rust toolchain
  • A Chromium-based browser
  • Optional: Ollama for local models and embeddings
git clone https://github.com/egroup-labs/kept.git
cd kept/app
npm ci
npm run tauri dev

Linux Dependencies

Ubuntu/Debian:

sudo apt install -y \
  build-essential clang libclang-dev pkg-config \
  libgtk-3-dev libwebkit2gtk-4.1-dev libsoup-3.0-dev \
  libpango1.0-dev libcairo2-dev libgdk-pixbuf-2.0-dev libglib2.0-dev

build-essential, clang, and libclang-dev are required for Rust crates that use bindgen (e.g. zstd-sys pulled in by CozoDB). The rest are the GTK / WebKitGTK / GLib stack Tauri 2 links against.

Then run:

npm run tauri:dev:linux

Frontend-Only Mode

You can run the UI against mock data without the Rust app:

cd app
npm ci
npm run dev

Vite serves the UI at http://localhost:1420.

Repository Layout

app/                Tauri 2 desktop app
  src/              React frontend
  src-tauri/        Rust backend, Axum server, vault, search, graph, agent tools
extension/          Chromium extension
  platforms/        Provider sync adapters
mcp/                MCP server for the vault
scripts/            App and MCP install scripts

Privacy And Security

  • Core archive and search data stays on your machine in ~/.kept/.
  • The extension talks to the desktop app over localhost and must include the bearer token stored at ~/.kept/token.
  • Kept has no hosted account and no cloud sync.
  • Optional chat, topic discovery, and graph features call only the model provider you configure, or your local Ollama server.
  • The updater checks the configured Kept update endpoint for new desktop releases.

Contributing

Issues and pull requests are welcome. Conventional commits are preferred:

feat(scope): add ...
fix(scope): repair ...

Useful areas to start:

  • extension/platforms/ for provider adapters
  • app/src-tauri/src/vault.rs for vault writes
  • app/src-tauri/src/db.rs for search indexing
  • app/src-tauri/src/kg-gen/ for graph generation
  • mcp/src/ for MCP vault tools

License

MIT

Frequently Asked Questions

What is kept?

kept is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by egroup-labs. Search, archive, and recall your AI conversations. ChatGPT, Claude, Gemini, Grok, Kimi. Local-first, MIT licensed. It has 121 GitHub stars.

Is kept safe to use?

Yes. kept passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install kept?

Clone the repository with "git clone https://github.com/egroup-labs/kept" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is kept written in?

kept is primarily written in TypeScript. It is open-source under egroup-labs on GitHub, so you can review or fork the full source.

Are there alternatives to kept?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh kept against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP Servers
View details

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP Servers
View details

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP Servers
View details

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP Servers
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details