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.

D
Caution
58/100

obsidian-mcp-router

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

Code Verified⚡ Live Monitored: not connected

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

Is this your MCP?

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.

// key findings
⚠️
Known vulnerabilities in dependencies: 7 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 2 credentials: OBSIDIAN_ROUTER_SMART_LINK_SECRET, OBSIDIAN_ROUTER_VIEW_AGENT_TOKEN
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes34 tools

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_vaults

List 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_files

List 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_file

Read 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).

search

Plain-text (substring) search across a vault. Returns matches with surrounding context. For meaning-based search, use search_smart instead.

write_file

Create 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_file

Append 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_file

Move 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_frontmatter

Read 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_frontmatter

Set 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_frontmatter

Apply 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_file

Permanently 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_file

Surgical 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_template

Execute 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_smart

Semantic (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_vault

Restrict 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_vaults

Lift 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_markdown

Convert 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_docling

Convert 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_images

Render 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_markdown

Convert a local DOCX file to markdown via `markitdown`. Returns markdown text only — does not write to any vault.

xlsx_to_markdown

Convert a local XLSX spreadsheet to markdown via `markitdown`. Returns markdown text only — does not write to any vault.

pptx_to_markdown

Convert a local PPTX presentation to markdown via `markitdown`. Returns markdown text only — does not write to any vault.

image_to_markdown

Convert 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_markdown

Convert 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_markdown

Convert 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_markdown

Convert 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_markdown

Convert 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_markdown

Convert 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_mode

Set 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_link

Build 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_obsidian

Navigate 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_link

Get 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_vault

READ-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_vault

Create 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

// known CVEs in dependencies7 high1 medium13 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.0.4GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highrepomix@1.6.0GHSA-9mm9-rqhj-j5mx

repomix Vulnerable to Command Injection (RCE) via `--remote-branch` Argument Injection

highundici@7.0.0GHSA-4cwx-7wf7-3272

undici vulnerable to cross-user information disclosure and parse-time crash via degenerate private cache directives

highundici@7.0.0GHSA-f269-vfmq-vjvj

Undici: Malicious WebSocket 64-bit length overflows parser and crashes the client

highundici@7.0.0GHSA-v9p9-hfj2-hcw8

Undici has Unhandled Exception in WebSocket Client Due to Invalid server_max_window_bits Validation

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configCLAUDE_PLUGIN_ROOT
configCLAUDE_PROJECT_DIR
configDOCLING_PATHTo use a system-wide install instead: pipx install docling and set =/abs/path/to/docling.
configMARKITDOWN_PATHTo use a system-wide install instead of the bundled venv: pipx install "markitdown[all]" and set =/abs/path/to/markitdown.
configMD_ALLOWED_PATHSMD_SHARE_DIR Legacy single-directory alias for , kept for backward compatibility with markdownify-mcp setups. Prefer MD_ALLOWED_PATHS.
configMD_SHARE_DIRLegacy single-directory alias for MD_ALLOWED_PATHS, kept for backward compatibility with markdownify-mcp setups. Prefer MD_ALLOWED_PATHS.
configOBSIDIAN_ROUTER_ALLOWED_VAULTS"": "roland,tribu,projects",
configOBSIDIAN_ROUTER_AUTO_ENRICH
configOBSIDIAN_ROUTER_AUTO_PURGE_CACHE
configOBSIDIAN_ROUTER_AUTO_UPDATE
configOBSIDIAN_ROUTER_CONFIG
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.
configOBSIDIAN_ROUTER_ENFORCE_WG_OR_LOOPBACK10.8.0.x baseUrl; WG can be enforced deployment-wide ().
configOBSIDIAN_ROUTER_HOOK_DEBUG
configOBSIDIAN_ROUTER_LOCKEDtradingview
configOBSIDIAN_ROUTER_NO_AUTO_INSTALL_HOOKS
configOBSIDIAN_ROUTER_NO_DECISIONS_RECALLdecisions-recall On a prompt that matches a settled decision page, cites it. Read-only. =1
configOBSIDIAN_ROUTER_NO_DOC_PROPAGATION_CHECK
configOBSIDIAN_ROUTER_NO_DOC_STARTUP_CHECK
configOBSIDIAN_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 )
configOBSIDIAN_ROUTER_NO_HOT_CACHE_LOADhot-cache-load On session start, prints your vault's wiki-meta/hot.md into the session context. Read-only. =1
configOBSIDIAN_ROUTER_NO_LINT_VAULT_LINKS
configOBSIDIAN_ROUTER_NO_OKF_PROJECTIONS
configOBSIDIAN_ROUTER_NO_SESSION_JOURNAL
configOBSIDIAN_ROUTER_NO_UPDATE_CHECKtrue (any truthy value)
configOBSIDIAN_ROUTER_NO_WATCH
configOBSIDIAN_ROUTER_NO_WIKI_AUTOCOMMIT
configOBSIDIAN_ROUTER_NO_WIKI_QUERY_FIRST
configOBSIDIAN_ROUTER_PROJECTIONS_DEBOUNCE_MS
configOBSIDIAN_ROUTER_PROVISION_NONCE
configOBSIDIAN_ROUTER_READONLY
configOBSIDIAN_ROUTER_REQUIRE_WIREGUARD
configOBSIDIAN_ROUTER_SESSION_LIVE_WINDOW_MIN
configOBSIDIAN_ROUTER_SKIP_MARKITDOWN1 still makes the script a no-op, for scripted environments that call it unconditionally.
🔐 secretOBSIDIAN_ROUTER_SMART_LINK_SECRET
configOBSIDIAN_ROUTER_SMART_LINK_URL
configOBSIDIAN_ROUTER_USER_ID"": "roland"
configOBSIDIAN_ROUTER_VIDEO_SUBLANGSyt-dlp --sub-langs value for the caption fallback (default en.,en). Widen to fetch other subtitle languages.
🔐 secretOBSIDIAN_ROUTER_VIEW_AGENT_TOKEN
configOBSIDIAN_ROUTER_VIEW_AGENT_URL
configPDF_IMAGES_PYTHON
configREPOMIX_PATHAbsolute path to the repomix executable. Override when not using the bundled node_modules/.bin/repomix.
configVAULT_PATHC:\VAULTS\TradingView
configYTDLP_PATH
// quality suggestions

Tool 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.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/tboome33/obsidian-mcp-router?variant=verified)](https://m8ven.ai/mcp/tboome33/obsidian-mcp-router)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 4c1d0901004ea20522755d30de6876653868b684
code hash: 8906a7f8278ccda7477da051226354aaa3bdf9f60a0beb4663dd10a085c014c3
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

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
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client