obsidian-mcp-router (tboome33/obsidian-mcp-router) is an MCP server listed on the M8ven Trust Index. It scores 58 out of 100, grade D. It declares 34 tools. No publisher has claimed this listing.
MCP server that routes Claude tool calls to multiple Obsidian vaults (local or remote) over the Local REST API plugin.
Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.
How we verified
Verified is a snapshot. Live keeps it current, and builds your track record.
⚡ Connect GitHub → continuous verification on every pushwhy connect →Who stands behind it
tboome33
Source: Glama · also listed on github_repo_search
Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →
Install from
The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.
These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.
list_vaultsList all configured Obsidian vaults (local and remote). Returns five fields: defaultVault (the name resolved by the cascade for the current session), vaults[] (active vaults, each pinged for online status + latency + missingApiKey + isDefault), disabled[] (vaults skipped by the disabledVaults config…
list_filesList files and subdirectories inside a vault. Pass a directory path (relative to vault root) to drill in, or omit it to list the vault root.
get_fileRead the full content of a file from a vault. Returns markdown text, metadata, and frontmatter. The result includes contentSha256 — pass it back as ifMatch on a later write/patch/delete/move to refuse the change if the file was modified in between (optimistic concurrency).
searchPlain-text (substring) search across a vault. Returns matches with surrounding context. For meaning-based search, use search_smart instead.
write_fileCreate a new file or replace the entire content of an existing file. Pass ifNew: true to refuse to overwrite an existing file (server returns 409). Pass ifMatch (a contentSha256 from get_file) for an atomic compare-and-swap: the write is refused with a 409 conflict if the file changed since you read…
append_to_fileAppend content to the end of a file. Creates the file if it doesn't exist (unless requireExisting is true). Use this for journals, logs, or running notes.
move_fileMove or rename a file. Implemented as GET source → PUT destination → DELETE source (no native endpoint exists on Local REST API). Pass overwrite: true to replace an existing destination.
get_frontmatterRead frontmatter from a file. Pass key to get a single property; omit it to get the full frontmatter object. Returns parsed values (numbers, booleans, arrays preserved — not just strings).
set_frontmatterSet or replace a single frontmatter property. Convenience wrapper around patch_file with targetType: frontmatter. The value can be a string, number, boolean, array, or object — type is preserved.
merge_frontmatterApply multiple frontmatter updates in sequence (NOT atomic — partial failures possible). Returns a per-key result. For atomic multi-key updates, prefer get_frontmatter + modify + write_file.
delete_filePermanently delete a file from the vault. Two-phase: call with preview:true to get a sealed plan (approvedPlanSha256), then call with confirm:true (echoing that seal) to proceed. The confirm:true guard prevents accidental deletes; the seal refuses the delete if the file drifted (changed/created/remo…
patch_fileSurgical edit of a specific section, block, or frontmatter field of a file — without rewriting the whole file. Use this when you want to insert under a specific heading, replace a block by ID, or update a single frontmatter property.
execute_templateExecute a Templater template against the vault. Optionally writes the rendered result to a new file. Requires the templater-obsidian plugin enabled in the target vault. The arguments map is exposed inside the template via tp.mcpTools.prompt("key") — note: directly under tp, NOT under tp.user.
search_smartSemantic (meaning-based) search using Smart Connections embeddings. Returns ranked chunks with cosine similarity scores and breadcrumbs (heading path). Hits under an `archives/` folder (archived decision deliberation, `type: decision-archive`) are excluded by default — the response then carries `arc…
lock_vaultRestrict the router to a single vault for the current session. While locked, every tool call that targets a different vault throws "Router is locked to ..."; calls without an explicit `vault` resolve to the locked one; cross-vault fan-out (`vault: "*"`) is refused. Use `unlock_vaults` to lift the lo…
unlock_vaultsLift the single-vault lock and restore normal multi-vault routing. Pass `persist: true` to ALSO remove the OBSIDIAN_ROUTER_LOCKED line from the current workspace .env (otherwise the lock would re-apply at next startup if the .env still has it set).
pdf_to_markdownConvert a local PDF file to markdown via the bundled `markitdown` Python CLI. Returns the markdown text — does NOT write to any vault. Chain with `write_file` to persist the output. Set `MD_ALLOWED_PATHS` to restrict which directories can be read.
pdf_to_markdown_doclingConvert a local PDF to markdown via Docling's standard pipeline (layout + table-structure recognition) — higher fidelity than `pdf_to_markdown` on complex tables / multi-column layouts, at ~10x the CPU cost. OPT-IN: requires the Docling extra (install with OBSIDIAN_ROUTER_ENABLE_DOCLING=1, or `npm r…
pdf_to_imagesRender a local PDF's pages to PNG images and return them as MCP image content blocks so the model can visually SEE the pages — complements `pdf_to_markdown`/`pdf_to_markdown_docling`, which only extract TEXT and lose layout, figures, diagrams, and visual formatting. OPT-IN: requires pypdfium2 + Pill…
docx_to_markdownConvert a local DOCX file to markdown via `markitdown`. Returns markdown text only — does not write to any vault.
xlsx_to_markdownConvert a local XLSX spreadsheet to markdown via `markitdown`. Returns markdown text only — does not write to any vault.
pptx_to_markdownConvert a local PPTX presentation to markdown via `markitdown`. Returns markdown text only — does not write to any vault.
image_to_markdownConvert a local image to markdown (metadata + OCR-derived description) via `markitdown[all]`. Requires the `[all]` extras — image OCR fails on the slim install.
audio_to_markdownConvert a local audio file to markdown (with transcription when supported) via `markitdown[all]`. Requires the `[all]` extras — audio transcription fails on the slim install.
youtube_to_markdownConvert a YouTube video page to markdown — includes the transcript when one is available. Falls back to yt-dlp caption extraction when the primary (MarkItDown) path fails; the fallback needs yt-dlp on PATH (or YTDLP_PATH) and degrades with a clear error if it is absent. URL must be http(s); private/…
bing_search_to_markdownConvert a Bing search results page to markdown. Pass the full results URL. SPA pages that defer rendering to JS produce raw HTML — the tool detects that and returns a clear error rather than misleading "markdown".
webpage_to_markdownConvert an arbitrary webpage to markdown. URL must be http(s); private/loopback hosts are refused (SSRF guard). For JS-rendered SPAs prefer the `defuddle` skill which uses a headless browser. Optionally pass `relevanceQuery` to apply a BM25 relevance second-pass (see filter_relevant_blocks) that dro…
git_repo_to_markdownConvert a git repository into a single markdown document (file tree + source code) via `repomix`. Useful as input to an LLM that needs whole-repo context. Supports GitHub URLs and the `owner/repo` shorthand. Pass `compress: true` for Tree-sitter compression (~70% size reduction).
set_auto_enrich_modeSet the wiki auto-enrichment mode for the current session. Auto-enrichment is the layer where Claude proactively proposes wiki saves at three triggers (validation pins, result-obtained digests, topic-switch checkpoints). Modes: "ClaudeAsk" (default — propose, user always confirms), "Hybrid" (auto-sa…
build_open_linkBuild a click-to-open URL (and a ready-to-paste markdown link) for one or many vault files WITHOUT reading or writing them. Use this when you need to cite a vault file in a chat response and you don't already have the URL from a previous tool call (write/get/patch all return clickToOpenUrl). Single …
open_in_obsidianNavigate the running Obsidian for a vault to a file — and bring its window to the front — WITHOUT opening a browser. Use this when the user asks to "open" / "show" / "go to" a note: the router calls the bridge's /open route server-side, so (unlike a click-to-open LINK, which a browser-proxying clien…
get_view_linkGet an ephemeral, ready-to-click browser link to VIEW/READ a vault's LIVE Obsidian GUI — navigated to a specific note, with credentials baked into the URL so the user types nothing. Call this WHENEVER the user asks for a link to read/see/open a note (e.g. "give me the link to the document", "can I s…
plan_vaultREAD-ONLY. Plan the creation of a NEW local Obsidian vault: returns the computed defaults + a structured questionnaire (the 5 wiki modes with explanations, the themes installed in the source, the registered vaults you can copy config from, the plugin profiles) + warnings + an approvedPlanSha256 (C3 …
provision_vaultCreate a NEW local Obsidian vault in one call from a set of wizard answers (typically the defaults/adjustments surfaced by plan_vault). Returns a step-by-step report + port, insecurePort, openUri, and probeResult. SECURITY: refuses any path outside the known vault roots unless allowOutsideRoots:true…
Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.
Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default
repomix Vulnerable to Command Injection (RCE) via `--remote-branch` Argument Injection
undici vulnerable to cross-user information disclosure and parse-time crash via degenerate private cache directives
Undici: Malicious WebSocket 64-bit length overflows parser and crashes the client
Undici has Unhandled Exception in WebSocket Client Due to Invalid server_max_window_bits Validation
CLAUDE_PLUGIN_ROOTCLAUDE_PROJECT_DIRDOCLING_PATHTo use a system-wide install instead: pipx install docling and set =/abs/path/to/docling.MARKITDOWN_PATHTo use a system-wide install instead of the bundled venv: pipx install "markitdown[all]" and set =/abs/path/to/markitdown.MD_ALLOWED_PATHSMD_SHARE_DIR Legacy single-directory alias for , kept for backward compatibility with markdownify-mcp setups. Prefer MD_ALLOWED_PATHS.MD_SHARE_DIRLegacy single-directory alias for MD_ALLOWED_PATHS, kept for backward compatibility with markdownify-mcp setups. Prefer MD_ALLOWED_PATHS.OBSIDIAN_ROUTER_ALLOWED_VAULTS"": "roland,tribu,projects",OBSIDIAN_ROUTER_AUTO_ENRICHOBSIDIAN_ROUTER_AUTO_PURGE_CACHEOBSIDIAN_ROUTER_AUTO_UPDATEOBSIDIAN_ROUTER_CONFIGOBSIDIAN_ROUTER_DEFAULT_VAULT1. env var — explicit per-process override. Set this in your project's .env to force a specific default regardless of cwd.OBSIDIAN_ROUTER_ENFORCE_WG_OR_LOOPBACK10.8.0.x baseUrl; WG can be enforced deployment-wide ().OBSIDIAN_ROUTER_HOOK_DEBUGOBSIDIAN_ROUTER_LOCKEDtradingviewOBSIDIAN_ROUTER_NO_AUTO_INSTALL_HOOKSOBSIDIAN_ROUTER_NO_DECISIONS_RECALLdecisions-recall On a prompt that matches a settled decision page, cites it. Read-only. =1OBSIDIAN_ROUTER_NO_DOC_PROPAGATION_CHECKOBSIDIAN_ROUTER_NO_DOC_STARTUP_CHECKOBSIDIAN_ROUTER_NO_HOT_CACHE_GUARDhot-cache-update-prompt — deterministic guard: blocks the turn (exit 2) until wiki-meta/hot.md is refreshed when this session wrote a wiki/ note (per-vault, transcript-scoped; opt-out )OBSIDIAN_ROUTER_NO_HOT_CACHE_LOADhot-cache-load On session start, prints your vault's wiki-meta/hot.md into the session context. Read-only. =1OBSIDIAN_ROUTER_NO_LINT_VAULT_LINKSOBSIDIAN_ROUTER_NO_OKF_PROJECTIONSOBSIDIAN_ROUTER_NO_SESSION_JOURNALOBSIDIAN_ROUTER_NO_UPDATE_CHECKtrue (any truthy value)OBSIDIAN_ROUTER_NO_WATCHOBSIDIAN_ROUTER_NO_WIKI_AUTOCOMMITOBSIDIAN_ROUTER_NO_WIKI_QUERY_FIRSTOBSIDIAN_ROUTER_PROJECTIONS_DEBOUNCE_MSOBSIDIAN_ROUTER_PROVISION_NONCEOBSIDIAN_ROUTER_READONLYOBSIDIAN_ROUTER_REQUIRE_WIREGUARDOBSIDIAN_ROUTER_SESSION_LIVE_WINDOW_MINOBSIDIAN_ROUTER_SKIP_MARKITDOWN1 still makes the script a no-op, for scripted environments that call it unconditionally.OBSIDIAN_ROUTER_SMART_LINK_SECRETOBSIDIAN_ROUTER_SMART_LINK_URLOBSIDIAN_ROUTER_USER_ID"": "roland"OBSIDIAN_ROUTER_VIDEO_SUBLANGSyt-dlp --sub-langs value for the caption fallback (default en.,en). Widen to fetch other subtitle languages.OBSIDIAN_ROUTER_VIEW_AGENT_TOKENOBSIDIAN_ROUTER_VIEW_AGENT_URLPDF_IMAGES_PYTHONREPOMIX_PATHAbsolute path to the repomix executable. Override when not using the bundled node_modules/.bin/repomix.VAULT_PATHC:\VAULTS\TradingViewYTDLP_PATHTool annotations
No tools have read-only/destructive annotations
Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.
All four hints declared on every tool
34/34 tools missing one or more hints — list_vaults (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); list_files (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); get_file (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +31 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.
For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.
Tests exist
No test files found
Add tests that exercise each declared tool.
Shell command execution
50 child_process calls — runs shell commands
Prefer library functions over shell-outs. If you must shell out, ensure all inputs are properly escaped.
Production dependencies are patched
0 critical, 7 high severity in production deps — @modelcontextprotocol/sdk@1.0.4 (high), repomix@1.6.0 (high)
Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.
Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.
[](https://m8ven.ai/mcp/tboome33/obsidian-mcp-router)?variant=verified from the URL.Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.
https://m8ven.ai/api/mcp/tool-check