-
0.17.1 Stable
released this
2026-07-24 17:07:56 +00:00 | 35 commits to main since this releaseChanged
- MCP read-guard now uses the Obsidian vault API instead of
node:fs/realpath. The
desktop-only symlink-escape guard is replaced by a whitelist check
(vault.getAbstractFileByPath(normalizePath(path)) instanceof TFile) — pure Obsidian API, no
Node built-in. This removes the Direct Filesystem Access store-scorecard warning and drops
node:fs/promisesandnode:pathfrom the source entirely (require()usage reduced from three
sites to one;node:httpfor the in-plugin MCP server necessarily stays aPlatform.isDesktop-
guardedrequire(), as the official lint rule mandates it while the scan flags it — a
documented contradiction in Obsidian's own tooling).
Security
read_noteover MCP no longer reads deleted notes (.trash/…) or any path Obsidian does not
list as a vault file. The new guard is stricter against path-traversal (only real vault files
pass). Trade-off: an in-vault symlink pointing outside the vault — which Obsidian itself follows —
is no longer specifically blocked (parity with Obsidian and comparable plugins); the MCP server
remains token-authenticated and bound to127.0.0.1.
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
- MCP read-guard now uses the Obsidian vault API instead of