@oomkapwn/enquire-mcp 3.5.2 → 3.5.3
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 +7 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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.3] — 2026-05-09
|
|
6
|
+
|
|
7
|
+
**Patch — CHANGELOG cleanup.** No code or config changes. Removes references to internal operational notes from the v3.5.1 / v3.5.2 entries that are not relevant to consumers of the package. Repository-level admin items are tracked privately, not in the public CHANGELOG.
|
|
8
|
+
|
|
5
9
|
## [3.5.2] — 2026-05-09
|
|
6
10
|
|
|
7
11
|
**Patch — README marketing boost + SECURITY.md PVR mention.** Companion to v3.5.1. No code changes.
|
|
@@ -25,9 +29,9 @@ Reporting a vulnerability now offers two channels: **GitHub PVR (preferred)** wi
|
|
|
25
29
|
|
|
26
30
|
**No-op for default users.** No CLI / response shape / schema changes.
|
|
27
31
|
|
|
28
|
-
### Repo About + topics
|
|
32
|
+
### Repo About + topics
|
|
29
33
|
|
|
30
|
-
|
|
34
|
+
Repo About description synced to current v3.x feature set; topics rotated for discovery (high-signal additions: `obsidian-mcp`, `mcp-server`, `claude-desktop`, `chatgpt`, `rag`, `vector-search`, `hnsw`, `pdf`, `ocr`).
|
|
31
35
|
|
|
32
36
|
## [3.5.1] — 2026-05-09
|
|
33
37
|
|
|
@@ -81,7 +85,7 @@ The audit also flagged three structural issues that need their own focused work,
|
|
|
81
85
|
|
|
82
86
|
1. **`src/index.ts` is 3,673 lines + excluded from coverage.** Splitting it into `cli.ts` / `server.ts` / `tool-registry.ts` / `prompts.ts` / `options.ts` is a multi-day refactor. Tracking for v3.6+.
|
|
83
87
|
2. **Machine-readable tool registry** (`tools.json` or similar) as single source of truth for README + docs/api.md + STABILITY.md + CLI help generation. Would replace the current invariant-tests-as-defense pattern with generation. Tracking for v3.6+.
|
|
84
|
-
3. **
|
|
88
|
+
3. **Repo-level configuration items** that require maintainer admin access (separate from code changes — handled out-of-band).
|
|
85
89
|
|
|
86
90
|
## [3.5.0] — 2026-05-09
|
|
87
91
|
|
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.
|
|
15
|
+
const VERSION = "3.5.3";
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oomkapwn/enquire-mcp",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.3",
|
|
4
4
|
"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.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|