Skip to content

Install Claude Recall.

One npm install, then start the daemon. Two commands. Nothing leaves your machine after it runs.

Install in two commands
npm install -g @clauderecallhq/cli
recall start && recall open

Requires Node 20 or newer. Ships as @clauderecallhq/cli on npm. Also available as a VS Code extension and an MCP server.

Requirements

First run

Three interactive entry points. They all read the same SQLite database, so you can switch between them at any time.

recall start            # background daemon (file watcher + local HTTP)
recall                  # branded welcome dashboard with a slash command palette
recall tui              # full terminal UI: arrow-key browse, live search, preview pane
recall open             # web UI in your browser

The dashboard and the TUI both read the local database directly, so you can browse without starting the daemon. The daemon is required for the web UI and for the TUI's o shortcut (open selected session in browser).

Add the MCP server to Claude Code

Once installed, wire Recall into Claude Code as a native tool. Full MCP setup docs →

{
  "mcpServers": {
    "recall": {
      "command": "claude-recall-mcp"
    }
  }
}

Troubleshooting

Run recall status to see daemon state and the indexed session count. Check ~/.recall/daemon.log for errors.