From markdown-vault-mcp
Guides optimal use of markdown vault tools for searching, reading, reasoning, and editing user notes. Activates when users mention 'my vault', 'my notes', or query their knowledge base.
npx claudepluginhub pvliesdonk/markdown-vault-mcpThis skill uses the workspace's default tool permissions.
When the user mentions "my vault", "my notes", or asks a question that could
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Processes PDFs: extracts text/tables/images, merges/splits/rotates pages, adds watermarks, creates/fills forms, encrypts/decrypts, OCRs scans. Activates on PDF mentions or output requests.
Share bugs, ideas, or general feedback.
When the user mentions "my vault", "my notes", or asks a question that could be answered from their knowledge base, use the markdown-vault-mcp tools as follows.
search with mode="hybrid" — combines BM25 keyword and
embedding similarity, gives the best recall for conceptual questions.mode="keyword" only when the user gives an exact phrase or
tag they want matched literally.mode="keyword" — embeddings miss exact names.search, call get_context on the top
hit before reading the full body. Context returns backlinks, outlinks,
similar notes, folder peers, and tags in one call — usually enough to
answer without reading the file.read when the user asks for the text itself or when
get_context does not give enough signal.get_backlinks.get_outlinks.get_connection_path.get_orphan_notes.get_most_linked.edit over write for targeted changes — edit fails safely if
the old text is not unique, preventing accidental overwrites.rename(update_links=True) for moves, never write to a new path plus
delete of the old path — the update_links flag repairs internal
references.reindex after writes; the server updates its index inline.list_documents as a search substitute — it is a flat
enumeration, not ranked.