@oomkapwn/enquire-mcp 3.5.6 → 3.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
+ ## [3.5.7] — 2026-05-12
6
+
7
+ **Patch — privacy positioning surfaced in hero.** No code changes.
8
+
9
+ Obsidian launched the [Obsidian Community](https://obsidian.md/blog/future-of-plugins/) directory on 2026-05-12, including automated reviews and an upcoming **disclosure system** that will tag every community plugin with what it accesses (network / filesystem / clipboard / etc). Plugins that hit cloud APIs for retrieval will be visibly flagged.
10
+
11
+ `enquire-mcp` makes **zero outbound network calls during serve** — all retrieval (BM25, embeddings, reranker) runs locally; models cached after one-time `install-model` from HuggingFace; vault content never leaves the machine. This was always true but never called out in the README hero.
12
+
13
+ Added a second hero callout under the existing "First and only..." line: *"Zero outbound network calls during serve. Embedding + reranker models cached locally. Your vault content never leaves your machine. The privacy-conscious complement to Obsidian plugins that hit cloud APIs for retrieval."*
14
+
15
+ No version-consistency or invariant changes; pure marketing-copy adjustment to align with the Obsidian ecosystem's new disclosure direction.
16
+
5
17
  ## [3.5.6] — 2026-05-10
6
18
 
7
19
  **Patch — root-cause fixes for two issue classes surfaced by external reviews.** Closes the systemic gaps, not just the individual symptoms. No behavior changes.
package/README.md CHANGED
@@ -22,6 +22,8 @@
22
22
  ---
23
23
 
24
24
  > **First and only Obsidian-MCP that ships hybrid retrieval, cross-encoder reranking, HNSW, int8 quantization, late-chunking, HyDE, GraphRAG-light community detection, standalone `.base` query execution, PDFs + OCR, and stateful remote MCP — together. In one binary. Under MIT. SLSA-3 signed.**
25
+ >
26
+ > **Zero outbound network calls during serve.** Embedding + reranker models cached locally (one-time `install-model` from HuggingFace). Your vault content never leaves your machine. The privacy-conscious complement to Obsidian plugins that hit cloud APIs for retrieval.
25
27
 
26
28
  ## What it is
27
29
 
package/dist/index.js CHANGED
@@ -12,7 +12,7 @@ import { chunkContent, defaultIndexFile, FtsIndex } from "./fts5.js";
12
12
  import { appendToNote, archiveNote, chatThreadAppend, chatThreadRead, contextPack, createNote, dataviewQuery, embeddingsSearch, findPath, findSimilar, frontmatterGet, frontmatterSearch, frontmatterSet, getBacklinks, getNoteNeighbors, getOpenQuestions, getOutboundLinks, getRecentEdits, getUnresolvedWikilinks, getVaultStats, lintWiki, listCanvases, listNotes, listPdfs, listTags, ocrPdf, openInUi, paperAudit, readCanvas, readNote, readPdf, renameNote, replaceInNotes, resolveWikilink, searchHybrid, searchText, semanticSearch, validateNoteProposal } from "./tools.js";
13
13
  import { Vault } from "./vault.js";
14
14
  import { VaultWatcher } from "./watcher.js";
15
- const VERSION = "3.5.6";
15
+ const VERSION = "3.5.7";
16
16
  /** Default location for the persistent embedding index, alongside .fts5.db. */
17
17
  function embedDbPath(vaultRoot) {
18
18
  // Match the FTS5 location convention by stripping the .fts5.db extension
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@oomkapwn/enquire-mcp",
4
- "version": "3.5.6",
4
+ "version": "3.5.7",
5
5
  "description": "The most advanced MCP server for Obsidian vaults. Hybrid retrieval (BM25 + TF-IDF + multilingual ML embeddings, RRF-fused) with BGE cross-encoder reranking, HNSW vector index, int8 quantization, late-chunking, HyDE-augmented retrieval, sub-question decomposition, PDFs (with OCR), Bases (.base query execution, standalone — no Obsidian needed), GraphRAG-light (Louvain wikilink community detection), wikilinks, backlinks, Dataview, frontmatter, canvas. 44 tools, 19 MCP prompts, 5 cross-encoder reranker models, 664 tests, SLSA-3, semver-bound. Works with Claude Code, Claude Desktop, Cursor, ChatGPT custom GPT, Codex, and any MCP client.",
6
6
  "type": "module",
7
7
  "bin": {