Getting Started
Get up and running with LumenCore in under 5 minutes.
//What is LumenCore?
LumenCore is a local Model Context Protocol (MCP) server that gives AI coding assistants like Claude Code persistent memory across sessions. It solves the problem of context loss when conversations reset.
When Claude Code connects to LumenCore, it can remember architectural decisions, code patterns, domain knowledge, and project history. All data stays local on your machine in a SQLite database.
//Quick Start
1. Install LumenCore
npm install -g lumencore2. Add LumenCore to Claude Code (once per machine)
claude mcp add lumencore -- lumencore serve3. Initialize in Your Project
cd /your/project
lumencore initThe init command sets up everything for seamless integration:
4. Start Claude
claudeLumenCore activates automatically and loads project context.
//Using LumenCore
Once connected, you can ask Claude Code to use these tools:
lumencore_activate
MCP TOOLCalled automatically at session start. Loads project context and scans new projects.
This tool is called automatically when you start Claude in an initialized project.
remember
MCP TOOLStore important project knowledge.
"Remember that we decided to use Redux Toolkit for state management because it reduces boilerplate."
recall
MCP TOOLSearch stored memories using full-text search.
"Recall any decisions we made about state management."