# LLMemory > LLMemory is a local-first AI chat vault. It captures conversations from browser chat sites (ChatGPT, Claude, Gemini, Perplexity, Grok) via a Chrome extension, and imports coding-agent sessions from CLI harnesses (Claude Code, Codex CLI, Cursor, OpenCode, Aider, T3 Chat) via an npm CLI. Everything is stored on the user's device and synced to storage they own (Google Drive or GitHub) — there is no LLMemory server and the company never sees any conversation data. The vault is searchable, exportable in open formats, and can be served to any AI agent through a built-in MCP server. LLMemory is not just a chat-sync app: it is harness- and CLI-sync capable. Browser chats and terminal coding sessions live in the same vault. ## Install (CLI) - npm: `npm install -g llmemory-cli` (requires Node.js 22+; binary is `llmemory`) - One-liner: `curl -fsSL https://llmemory.xyz/install.sh | sh` - Package page: https://www.npmjs.com/package/llmemory-cli ## Quick start - `llmemory init` — create the local vault - `llmemory import claude-code` — import Claude Code sessions - `llmemory import codex` — import OpenAI Codex CLI sessions - `llmemory import cursor` / `opencode` / `aider` / `t3` — other harnesses - `llmemory serve` — browse the vault locally in a web UI - `llmemory watch` / `llmemory daemon` — keep importing automatically - `llmemory doctor` — diagnose problems ## MCP server (for agents) - `llmemory connect-claude` — registers the MCP server with Claude Code and Claude Desktop in one step - `llmemory mcp` — stdio MCP server for any other MCP-capable client - Tools exposed: `search_chats`, `get_conversation`, `get_context_pack`, `list_recent`, `list_sources` ## Pages - [Home](https://llmemory.xyz/): product overview — one private vault for every AI conversation - [CLI & Agents](https://llmemory.xyz/cli): install guide, supported harnesses, MCP setup, instructions for AI agents - [Supported sites & harnesses](https://llmemory.xyz/supported): full coverage matrix plus a form to request new sites or harnesses - [Privacy policy](https://llmemory.xyz/privacy.html): no-server architecture — data syncs browser-to-user-storage only - [Terms](https://llmemory.xyz/terms.html) - [Contact](https://llmemory.xyz/contact): hello@llmemory.xyz ## Optional - [Web app](https://app.llmemory.xyz): the hosted vault UI (reads the user's own storage) - [Installer script](https://llmemory.xyz/install.sh): POSIX sh installer that checks Node 22+ and runs npm install