README.md

July 24, 2026 · View on GitHub

Ory Lumen: Semantic code search for AI agents

CI Go Report Card Go Reference Coverage Status License

Claude reads entire files to find what it needs. Lumen gives it a map.

Lumen is a 100% local semantic code search engine for AI coding agents. No API keys, no cloud, no external database, just open-source embedding models (Ollama or LM Studio), SQLite, and your CPU. A single static binary and your own local embedding server.

The payoff is measurable and reproducible: across 9 benchmark runs on 9 languages and real GitHub bug-fix tasks, Lumen cuts cost in every single language — up to 39%. Output tokens drop by up to 66%, sessions complete up to 53% faster, and patch quality is maintained in every task. All verified with a transparent, open-source benchmark framework that you can run yourself.

With LumenBaseline (no Lumen)
Cost (avg, bug-fix)$0.29 (-26%)$0.40
Time (avg, bug-fix)125s (-28%)174s
Output tokens (avg)5,247 (-37%)8,323
JavaScript (marked)$0.32, 119s (-33%, -53%)$0.48, 255s
Rust (toml)$0.38, 204s (-39%, -34%)$0.61, 310s
PHP (monolog)$0.14, 34s (-27%, -34%)$0.19, 52s
TypeScript (commander)$0.14, 56s (-27%, -33%)$0.19, 84s
Svelte (chat-ui)$0.10, 56s (-26%, -31%)$0.14, 80s
Patch qualityMaintained in all 9 tasks

30-second path: install Lumen for your agent host -> start a local embedding server -> call semantic_search before falling back to raw file reads.

Status: production local semantic code search MCP server and CLI. Indexing and search are local-first; benchmark claims are reproducible through the checked-in bench-swe harness.

Not for: hosted RAG, remote multi-tenant code search, replacing a language server, indexing secrets intentionally, or bypassing source control and local filesystem permissions.

Contents

Naming

SurfaceThis repo
Repositorylumen
CLI / binarylumen
OpenCode package@ory/lumen-opencode
MCP toolssemantic_search, health_check, index_status
Shared skillsdoctor, reindex
Env prefixLUMEN_*, plus backend-specific OLLAMA_HOST, LM_STUDIO_HOST, and TEI_HOST

This repo is a guide exception: it is a Go MCP server and CLI, not an RMCP Rust wrapper. The README still follows the same operator invariants: first safe search, clear local credential boundaries, curated-vs-generated docs, and distribution/runtime honesty.

Capabilities And Boundaries

  • Builds local semantic indexes with Go AST and tree-sitter chunking.
  • Stores vectors in local SQLite/sqlite-vec databases outside the target repo.
  • Auto-indexes or refreshes stale indexes before searches.
  • Exposes MCP tools for semantic search, health checks, and index status.
  • Ships host integrations for Claude Code, Cursor, Codex, and OpenCode.
  • Provides reusable doctor and reindex skills.
This repo ownsEmbedding backend ownsExplicitly out of scope
File discovery, chunking, Merkle freshness checks, local vector store, MCP tool responses, CLI commands, plugin launchers.Embedding inference, model availability, GPU/CPU performance, backend auth/network reachability.Hosted search, secret scanning, remote tenancy, language-server diagnostics, arbitrary file mutation, cloud indexing.

Install

The quickest install path depends on the agent host:

  • Claude Code: install lumen@ory from the Ory plugin marketplace.
  • Cursor: use the checked-in .cursor-plugin/ bundle.
  • Codex: clone this repo under ${CODEX_HOME:-$HOME/.codex}/lumen and register scripts/run stdio.
  • OpenCode: add @ory/lumen-opencode to the plugin array.

For MCP clients that launch local stdio servers manually, the command shape is:

lumen stdio

For npm-based hosts, OpenCode consumes the @ory/lumen-opencode package. MCP configs for other servers may still use npx -y <package> style commands, but Lumen's own Codex/Cursor launcher is scripts/run stdio.

Demo

Lumen demo

Claude Code asking about the Prometheus codebase. Lumen's semantic_search finds the relevant code without reading entire files.

Quickstart

Prerequisites:

Platform support: Linux, macOS, and Windows. File locking for background indexing coordination uses flock(2) on Unix and LockFileEx on Windows (via gofrs/flock).

  1. Ollama installed and running, then pull the default embedding model:
    ollama pull ordis/jina-embeddings-v2-base-code
    
  2. One of: Claude Code, Cursor, Codex, or OpenCode

Note: Installation differs by platform. Claude Code is installed from a plugin marketplace. Codex uses a local MCP server plus native skill discovery. OpenCode installs from npm. Cursor packaging is shipped in this repository and is ready for Cursor's plugin distribution workflow.

Install:

Claude Code

/plugin marketplace add ory/claude-plugins
/plugin install lumen@ory

Verify by starting a new Claude session and running /lumen:doctor.

Cursor

Lumen ships a native Cursor plugin bundle in this repository:

  • .cursor-plugin/plugin.json - plugin manifest
  • mcp.json - local lumen MCP server wiring
  • hooks/hooks-cursor.json - SessionStart hook
  • skills/ - shared doctor and reindex skills

Use Cursor's plugin installation or distribution workflow with this bundle. Detailed packaging notes: .cursor-plugin/INSTALL.md

Verify by opening a new Cursor agent session and asking it to use the doctor skill or the Lumen semantic_search tool.

Codex

Quick install:

Fetch and follow instructions from https://raw.githubusercontent.com/ory/lumen/refs/heads/main/.codex/INSTALL.md

Manual install:

CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
git clone https://github.com/ory/lumen.git "$CODEX_HOME/lumen"
mkdir -p "$HOME/.agents/skills"
ln -s "$CODEX_HOME/lumen/skills" "$HOME/.agents/skills/lumen"
codex mcp add lumen -- "$CODEX_HOME/lumen/scripts/run" stdio

Detailed docs: .codex/INSTALL.md

Verify with:

codex mcp get lumen
ls -la "$HOME/.agents/skills/lumen"

OpenCode

Add @ory/lumen-opencode to the plugin array in your opencode.json:

{
  "plugin": ["@ory/lumen-opencode"]
}

Detailed docs: .opencode/INSTALL.md

Verify with:

opencode mcp list

Updating

  • Claude Code - update through Claude's plugin marketplace
  • Cursor - refresh or reinstall the bundled plugin through Cursor after updating this repository or the published package
  • Codex - cd "${CODEX_HOME:-$HOME/.codex}/lumen" && git pull
  • OpenCode - update the version pin in opencode.json (e.g. @ory/lumen-opencode@0.0.29) and restart OpenCode

On first Claude Code or Cursor session start, Lumen:

  1. Downloads the binary automatically from the latest GitHub release
  2. Indexes your project in the background using Merkle tree change detection
  3. Registers a semantic_search MCP tool that the host can use automatically

In Codex and OpenCode, the same binary download and index seeding happen on the first semantic_search call.

Two shared skills are also available: doctor (health check) and reindex (forced re-indexing). Claude exposes them as /lumen:doctor and /lumen:reindex; the other hosts discover the same shared skill content through their native skill systems.

The same semantic_search, health_check, and index_status MCP tools plus the shared doctor and reindex skills are exposed through the Codex, Cursor, and OpenCode surfaces as well. The first semantic_search call seeds or refreshes the index automatically.

Client Configuration

Lumen clients launch the same local MCP server and pass backend configuration through environment variables. The Claude plugin uses ${CLAUDE_PLUGIN_ROOT} and user config; Cursor uses ${CURSOR_PLUGIN_ROOT}/scripts/run stdio; Codex uses the checked-out scripts/run stdio launcher; OpenCode loads the published plugin package.

For direct MCP JSON, the minimal server entry is:

{
  "mcpServers": {
    "lumen": {
      "command": "/path/to/lumen",
      "args": ["stdio"],
      "env": {
        "LUMEN_BACKEND": "ollama",
        "OLLAMA_HOST": "http://localhost:11434",
        "LUMEN_EMBED_MODEL": "ordis/jina-embeddings-v2-base-code"
      }
    }
  }
}

Runtime Surfaces

SurfaceCommand or fileNotes
MCP stdio serverlumen stdioUsed by Claude Code, Cursor, Codex, and OpenCode.
CLI searchlumen search "query" --path .Runs local semantic search from a shell.
Index managementlumen index ., lumen purgeBuilds or clears local indexes.
Shared skillsskills/doctor, skills/reindexHost-neutral health and reindex workflows.
Claude plugin.claude-plugin/plugin.jsonMarketplace install surface.
Cursor plugin.cursor-plugin/, .cursor/mcp.jsonCursor bundle and MCP wiring.
Codex install.codex/INSTALL.mdLocal MCP plus skill discovery setup.
OpenCode package@ory/lumen-opencodenpm-published OpenCode plugin wrapper.

MCP Tool Reference

ToolPurpose
semantic_searchSearch indexed code with natural language and return ranked code chunks or location-only summaries.
health_checkCheck embedding backend reachability, host, model, and connection status.
index_statusInspect indexed file/chunk counts, embedding model, and stale state for a project.

Safe raw MCP smoke:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "health_check",
    "arguments": {}
  }
}

Authentication

Lumen itself does not require API keys. It talks to local embedding backends by URL and stores indexes under the local user account. If your Ollama, LM Studio, or TEI endpoint is protected by network policy or auth, configure that outside Lumen's MCP tool arguments.

MCP callers never provide backend credentials, filesystem credentials, or model server secrets in tool arguments. Tool arguments carry search text, paths, limits, and output shaping options.

Safety And Trust Model

Lumen reads project files that the local user can already read and writes index databases outside the project tree. It does not intentionally upload code or embeddings to cloud services; data leaves the machine only if the configured embedding backend URL points somewhere remote.

Keep the MCP server scoped to trusted local agent clients. Treat indexed code, query text, and returned snippets as project data, and avoid pointing Lumen at directories whose contents should not be available to the agent.

Architecture

Lumen sits between your codebase and Claude as an MCP server. When a session starts, it walks your project and builds a Merkle tree over file hashes: only changed files get re-chunked and re-embedded. Each file is split into semantic chunks (functions, types, methods) using Go's native AST or tree-sitter grammars for other languages. Chunks are embedded and stored in SQLite + sqlite-vec using cosine-distance KNN for retrieval.

Files -> semantic chunks -> vector embeddings -> SQLite/sqlite-vec -> KNN search

When Claude needs to understand code, it calls semantic_search instead of reading entire files. The index is stored outside your repo (~/.local/share/lumen/<hash>/index.db), keyed by project path and model name; different models never share an index.

What you get

  • Semantic vector search — Claude finds relevant functions, types, and modules by meaning, not keyword matching
  • Auto-indexing — indexes on session start, only re-processes changed files via Merkle tree diffing
  • Incremental updates — re-indexes only what changed; large codebases re-index in seconds after the first run
  • 12 language families — Go, Python, TypeScript, JavaScript, Svelte, Rust, Ruby, Java, PHP, C/C++, C#, Dart
  • Git worktree support — worktrees share index data automatically; a new worktree seeds from a sibling's index and only re-indexes changed files, turning minutes of embedding into seconds
  • Zero cloud — embeddings stay on your machine; no data leaves your network
  • Ollama and LM Studio — works with either local embedding backend

Benchmarks

Lumen is evaluated using bench-swe: a SWE-bench-style harness that runs Claude on real GitHub bug-fix tasks and measures cost, time, output tokens, and patch quality — with and without Lumen. All results are reproducible: raw JSONL streams, patch diffs, and judge ratings are committed to this repository.

Key results — 9 runs across 9 languages, hard difficulty, real GitHub issues (ordis/jina-embeddings-v2-base-code, Ollama):

LanguageCost ReductionTime ReductionOutput Token ReductionQuality
Rust-39%-34%-31% (18K → 12K)Poor (both)
JavaScript-33%-53%-66% (14K → 5K)Perfect (both)
TypeScript-27%-33%-64% (5K → 1.8K)Good (both)
PHP-27%-34%-59% (1.9K → 0.8K)Good (both)
Ruby-24%-11%-9% (6.1K → 5.6K)Good (both)
Python-20%-29%-36% (1.7K → 1.1K)Perfect (both)
Go-12%-9%-10% (11K → 10K)Good (both)
C++-8%-3%+42% (feature task)Good (both)
Svelte-26%-31%-26% (4.0K → 3.0K)Poor (both)

Cost was reduced in every language tested. Quality was maintained in every task — zero regressions. JavaScript and TypeScript show the most dramatic efficiency gains: same quality fixes in half the time with two-thirds fewer tokens. Even on tasks too hard for either approach (Rust, Svelte), Lumen cuts the cost of failure by 26–39%.

See docs/BENCHMARKS.md for all 9 per-language deep dives, judge rationales, and reproduce instructions.

Supported languages

Supports 12 language families with semantic chunking (10 benchmarked):

LanguageParserExtensionsBenchmark status
GoNative AST.goBenchmarked: -12% cost, Good quality
Pythontree-sitter.pyBenchmarked: Perfect quality, -36% tokens
TypeScript / TSXtree-sitter.ts, .tsxBenchmarked: -64% tokens, -33% time
JavaScript / JSXtree-sitter.js, .jsx, .mjsBenchmarked: -66% tokens, -53% time
Darttree-sitter.dartBenchmarked: -76% cost, -82% tokens, -79% time
Rusttree-sitter.rsBenchmarked: -39% cost, -34% time
Rubytree-sitter.rbBenchmarked: -24% cost, -11% time
PHPtree-sitter.phpBenchmarked: -59% tokens, -34% time
C / C++tree-sitter.c, .h, .cpp, .cc, .cxx, .hppBenchmarked: -8% cost (C++ feature task)
Sveltetree-sitter.svelteBenchmarked: -26% cost, -31% time
Javatree-sitter.javaSupported
C#tree-sitter.csSupported

Go uses the native Go AST parser for the most precise chunks. All other languages use tree-sitter grammars. See docs/BENCHMARKS.md for all 10 per-language benchmark deep dives.

Configuration

All configuration is via environment variables:

VariableDefaultDescription
LUMEN_EMBED_MODELsee note ¹Embedding model; use with LUMEN_EMBED_DIMS for unlisted models
LUMEN_BACKENDollamaEmbedding backend (ollama or lmstudio)
OLLAMA_HOSThttp://localhost:11434Ollama server URL
LM_STUDIO_HOSThttp://localhost:1234LM Studio server URL
LUMEN_MAX_CHUNK_TOKENS512Max tokens per chunk before splitting
LUMEN_EMBED_DIMSOverride embedding dimensions (required for unlisted models)
LUMEN_EMBED_CTX8192 (unlisted models)Override context window length

¹ ordis/jina-embeddings-v2-base-code (Ollama), nomic-ai/nomic-embed-code-GGUF (LM Studio)

Supported embedding models

Dimensions and context length are configured automatically per model:

ModelBackendDimsContextRecommended
ordis/jina-embeddings-v2-base-codeOllama7688192Best default — lowest cost, no over-retrieval
qwen3-embedding:8bOllama409640960Best quality — strongest dominance (7/9 wins), very slow indexing
nomic-ai/nomic-embed-code-GGUFLM Studio35848192Usable — good quality, but TypeScript over-retrieval raises costs
qwen3-embedding:4bOllama256040960Not recommended — highest costs, severe TypeScript over-retrieval
nomic-embed-textOllama7688192Untested
qwen3-embedding:0.6bOllama102432768Untested
all-minilmOllama384512Untested

Switching models creates a separate index automatically. The model name is part of the database path hash, so different models never collide.

Caveat: the DB path hash includes the model name but not the backend. If the same model name is configured on two backends (e.g. an Ollama and an LM Studio entry both named foo), they share the same index — use distinct model names per backend to avoid collisions.

Selecting a server per invocation

lumen index and lumen search accept --model/-m and --backend/-b to pick from a multi-server config.yaml. The selection filters the configured servers to those matching both fields; failover still works within the filtered subset.

# Index with the Ollama server matching this model name.
lumen index --model ordis/jina-embeddings-v2-base-code .

# Same model name hosted on LM Studio (present in YAML, not in the
# static registry) — accepted because the name is configured.
lumen index --model text-embedding-jina-embeddings-v2-base-code .

# Disambiguate when the same model is configured on two backends.
lumen index --model my-embed --backend lmstudio .

# Pick the first configured Ollama server regardless of model.
lumen search --backend ollama "…"

If --model is not configured in YAML but is a known registry model (and --backend is unset), Lumen falls back to mutating the default server's model — preserving lumen index --model all-minilm . for users with no YAML.

Using a custom or unlisted model

If your model is not in the registry above, set LUMEN_EMBED_DIMS to bypass the registry check. LUMEN_EMBED_CTX is optional and defaults to 8192.

Both variables can also override values for known models — useful when running a model variant with a longer context window or different output dimensions.

LUMEN_BACKEND=lmstudio
LM_STUDIO_HOST=http://localhost:8801
LUMEN_EMBED_MODEL=mlx-community/Qwen3-Embedding-8B-4bit-DWQ
LUMEN_EMBED_DIMS=4096
LUMEN_EMBED_CTX=40960   # optional, defaults to 8192

Controlling what gets indexed

Lumen filters files through six layers: built-in directory and lock file skips → .gitignore.lumenignore.gitattributes (linguist-generated) → supported file extension. Only files that pass all layers are indexed.

.lumenignore uses .gitignore syntax. Place it in your project root (or any subdirectory) to exclude files that aren't in .gitignore but are noise for code search — generated protobuf files, test snapshots, vendored data, etc.

Built-in skips (always excluded)

Directories: .git, node_modules, vendor, dist, .cache, .venv, venv, __pycache__, target, .gradle, _build, deps, .idea, .vscode, .next, .nuxt, .build, .output, bower_components, .bundle, .tox, .eggs, testdata, .hg, .svn

Lock files: package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lock, bun.lockb, go.sum, composer.lock, poetry.lock, Pipfile.lock, Gemfile.lock, Cargo.lock, pubspec.lock, mix.lock, flake.lock, packages.lock.json

Database location

Index databases are stored outside your project:

~/.local/share/lumen/<hash>/index.db

Where <hash> is derived from the absolute project path, embedding model name, and binary version. Different models or Lumen versions automatically get separate indexes. No files are added to your repo, no .gitignore modifications needed.

You can safely delete the entire lumen directory to clear all indexes, or use lumen purge to do it automatically.

Git worktrees are detected automatically. When you create a new worktree (git worktree add or claude --worktree), Lumen finds a sibling worktree's existing index and copies it as a seed. The Merkle tree diff then re-indexes only the files that actually differ — typically a handful of files instead of the entire codebase. No configuration needed; it just works.

CLI Reference

Download the binary from the GitHub releases page or let the plugin install it automatically.

lumen help

Distribution Contract

  • Source repository and upstream module path remain github.com/ory/lumen.
  • The local launcher script downloads release assets from jmagar/lumen in this forked packaging flow.
  • OpenCode package metadata is @ory/lumen-opencode.
  • Claude, Cursor, Codex, and OpenCode integrations all launch the same lumen binary and expose the same MCP tools.
  • Plugin manifests, install docs, and release/package metadata are the generated or machine-readable source of truth for host-specific wiring; this README is the curated operator entry point.

Verification

python3 /home/jmagar/workspace/soma/scripts/check-readme-guide.py README.md
make test
make lint
git diff --check

For a live MCP smoke, use the doctor skill or call health_check, then call a small semantic_search query against a local project.

Deployment

  • Run local embedding infrastructure first: Ollama, LM Studio, or TEI.
  • Install the host-specific plugin or register lumen stdio manually.
  • Keep index databases under the local user data directory; they are not written into the project repository.
  • Use .lumenignore for project-specific exclusions that are not already in .gitignore.

Troubleshooting

Ollama not running / "connection refused"

Start Ollama and verify the model is pulled:

ollama serve
ollama pull ordis/jina-embeddings-v2-base-code

Run /lumen:doctor inside Claude Code to confirm connectivity.

In Cursor, Codex, or OpenCode, use the shared doctor skill or call health_check and index_status directly.

Stale index after large refactor

Run /lumen:reindex inside Claude Code to force a full re-index, or:

lumen purge && lumen index .

In Codex, use the bundled reindex skill to refresh the index through the MCP server, or run the same CLI commands for a clean rebuild. The same shared reindex skill is available in Cursor and OpenCode as well.

LM Studio: embedding model appears under LLMs instead of Embeddings

LM Studio classifies embedding models by matching the GGUF arch field against a hardcoded allowlist (bert, nomic-bert). Models built on other architectures — including Qwen2-based models like nomic-embed-code — are misclassified as LLMs. This affects lms ls output and the /v1/embeddings REST endpoint.

Fix (GGUF, v0.3.16+): Open LM Studio → My Models, click the gear icon next to the model, set Override Domain TypeText Embedding.

macOS / Apple Silicon: MLX format models are significantly faster on Apple Silicon. However, LM Studio removed the domain type override for MLX in v0.3.30+, so MLX embedding models cannot be reclassified. Use the GGUF variant to retain the override option, or switch to Ollama (ordis/jina-embeddings-v2-base-code or qwen3-embedding:8b).

Switching embedding models

Set LUMEN_EMBED_MODEL to a model from the supported table above. Each model gets its own database; the old index is not deleted automatically.

Slow first indexing

The first run embeds every file. Subsequent runs only process changed files (typically a few seconds). For large projects (100k+ lines), first indexing can take several minutes — this is a one-time cost.

Development

git clone https://github.com/ory/lumen.git
cd lumen

# Build locally (CGO required for sqlite-vec)
make build-local

# Run tests
make test

# Run linter
make lint

# Load as a Claude Code plugin from source
make plugin-dev

See CLAUDE.md for architecture details, design decisions, and contribution guidelines, and AGENTS.md for repo-specific agent instructions.

  • soma - RMCP runtime for provider-backed MCP servers.
  • unifi-rmcp - UniFi controller REST API bridge.
  • tailscale-rmcp - Tailscale API bridge for devices, users, and tailnet operations.
  • unraid-rmcp - Unraid GraphQL bridge for NAS and server management.
  • apprise-rmcp - Apprise notification fan-out bridge for many delivery backends.
  • gotify-rmcp - Gotify push notification bridge for sends, messages, apps, and clients.
  • arcane-rmcp - Arcane Docker management bridge for containers and related resources.
  • yarr - Media-stack bridge for Sonarr, Radarr, Prowlarr, Plex, and related services.
  • ytdl-rmcp - Media download and metadata workflow server.
  • synapse-rmcp - Local Synapse workflow server for scout and flux actions.
  • cortex - Syslog and homelab log aggregation MCP server.
  • axon - RAG, crawl, scrape, extract, and semantic search project.
  • labby - Homelab control plane and MCP gateway project.

Documentation

This README is the curated public entry point. The generated and machine-readable source of truth for client wiring lives in .claude-plugin/, .cursor-plugin/, .codex/, .opencode/, package.json, and the release workflow. Deeper docs:

  • docs/BENCHMARKS.md - benchmark methodology and per-language results.
  • .codex/INSTALL.md - Codex setup.
  • .cursor-plugin/INSTALL.md - Cursor bundle notes.
  • .opencode/INSTALL.md - OpenCode setup.
  • CLAUDE.md - architecture details and repo-local contribution notes.
  • bench-swe/README.md - benchmark harness.

License

Apache-2.0, see LICENSE.