Skip to main content

Lore MCP

Version control for AI coding context

What is Lore MCP?

Lore MCP captures and preserves the thinking process behind AI-assisted coding. It treats intent, assumptions, and decisions as first-class assets alongside code.

Key Features

FeatureDescription
Context CommitsRecord intent, decisions, and alternatives
BlameFind why code was written a certain way
SearchFull-text search across all contexts
Team SyncShare context with team members (same git repo)
Auto CaptureHooks for automatic context recording
Cloud StorageAll data synced to cloud via Lore API

Quick Start

# 1. Get API key from https://lore-dashboard.jadecon2655.workers.dev

# 2. Configure MCP (add to ~/.claude.json)
{
"mcpServers": {
"lore": {
"command": "uvx",
"args": ["lore-mcp"],
"env": { "LORE_API_KEY": "lore_your_key_here" }
}
}
}

# 3. Restart Claude Code and start using!

How It Works

┌─────────────────────────────────────────┐
│ 1. Code with Claude │
│ "Help me implement authentication" │
└─────────────────────────────────────────┘


┌─────────────────────────────────────────┐
│ 2. Context Automatically Captured │
│ - Intent recorded │
│ - Decisions tracked │
│ - Files changed noted │
└─────────────────────────────────────────┘


┌─────────────────────────────────────────┐
│ 3. Later: "Why was this written?" │
│ Claude uses lore_blame to explain │
└─────────────────────────────────────────┘