
A Windows-only MCP server that hooks Claude directly into your local Markdown vault without uploading anything. It exposes two tools: omniclip.status to verify the index is live, and omniclip.search for semantic retrieval across your notes, PDFs, and 1,290 other formats via Tika. Built on top of the standalone OmniClip RAG app, which uses BAAI/bge-m3 embeddings and hot-reloads new files automatically. The MCP layer is read-only by design, so Claude can pull context but never write back. If you keep a large personal knowledge base in Obsidian or Logseq and want Claude to search it during conversations, this bridges the gap without Docker or cloud sync.
A local-first Windows desktop app and read-only MCP server for searching private Markdown, PDF, and Tika-backed knowledge bases.
Download Windows app · 中文说明 · Website · User Wiki · MCP Setup
Caelune builds searchable indexes from knowledge you already keep on your own computer. It combines exact-text retrieval, structural signals, semantic vector search, optional reranking, and source-aware context assembly.
The desktop app manages data roots, Runtime components, models, knowledge-base builds, live watch, queries, and result review. The optional MCP server exposes the same retrieval core to MCP-capable AI clients through two read-only tools.
| I want to… | Start here |
|---|---|
| Install the Windows app and build my first index | Getting Started |
| Understand Runtime, models, CPU, CUDA, or resource messages | Runtime and Models |
| Keep indexes current after editing notes | Knowledge Bases and Live Watch |
| Connect an AI client through MCP | MCP Integration |
| Diagnose a problem safely | Troubleshooting |
The Query Console keeps input, scope, retrieval settings, and live query state together. Results and Details uses a separate page for source-labelled hits, snippet review, full-context selection, and page filtering.
Open the latest release and choose the package that matches your use case:
| Package label | Use it for |
|---|---|
WIN-EXE | Normal Windows desktop use: configure, build, watch, search, and review results |
MCP-...-win64.zip | Manual stdio setup for an MCP client |
.mcpb | MCP Registry or MCPB-aware clients |
The MCP package does not build or modify knowledge bases. Build the index with the Windows desktop app first.
BAAI/bge-m3, and optional BAAI/bge-reranker-v2-m3.Caelune is local-first, not a promise that every possible workflow is permanently offline.
Keep backups of important source material and review retrieved context before using it in high-stakes work.
WIN-EXE.Caelune.exe.Detailed instructions: Getting Started.
The Runtime and models are external sidecars so healthy components can be reused across application versions. See Runtime and Models.
flowchart LR
A["Markdown / PDF / Tika sources"] --> B["Local parsing and indexes"]
B --> C["FTS5 lexical recall"]
B --> D["LanceDB semantic recall"]
C --> E["Fusion and filters"]
D --> E
E --> F["Optional reranking"]
F --> G["Results and context pack"]
G --> H["Clipboard or read-only MCP"]
stdio configuration, or use the Registry/MCPB package.Caelune-MCP.exe.omniclip.status to inspect readiness and active retrieval modeomniclip.search to retrieve source-labelled resultsSome clients do not accept local stdio servers directly and may require a local proxy. See the MCP Integration Wiki and MCP_SETUP.md.
| Topic | Guide |
|---|---|
| Installation and first build | Getting Started |
| Runtime, models, CPU, and CUDA | Runtime and Models |
| Knowledge bases and live watch | Knowledge Bases and Live Watch |
| Query stages and resource messages | Search and Resources |
| PDF and Tika sources | PDF and Tika |
| MCP clients and tools | MCP Integration |
| Common problems | Troubleshooting |
# Desktop GUI
.\scripts\run_gui.ps1
# CLI status and query
.\scripts\run.ps1 status
.\scripts\run.ps1 query "your question"
# Build Windows packages
.\scripts\build_exe.ps1
# MCP self-check from source
python launcher_mcp.py --mcp-selfcheck
Developer orientation and architecture links live in Development and Architecture.
Caelune is released under the MIT License. It relies on open-source projects including PySide6, SQLite, LanceDB, Apache Arrow, PyTorch, sentence-transformers, Transformers, BGE models, PyPDF, Apache Tika, Eclipse Temurin, watchdog, PyInstaller, and the Model Context Protocol SDK.
See THIRD_PARTY_NOTICES.md for the repository-level legal and distribution notices.
Caelune and its retrieval results are provided without warranty. Verify important results, maintain backups, and do not use retrieved context or downstream AI output as the sole basis for medical, legal, financial, safety-critical, or other high-stakes decisions.