Skip to main content
Glama
everton-dgn

vault-search-mcp

by everton-dgn

get_backlinks

Find notes that link to a specified target note in the vault, using an efficient link index for fast retrieval.

Instructions

Find notes that link to one target note.

Uses the rebuildable link index instead of rereading vault files.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesvault-relative target path, such as 'projects/my-project.md'
include_contextNoinclude text around the link

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are absent, so the description carries the full burden. It implies a read-only operation by saying 'find', but it does not explicitly state side effects, error behavior, or limitations beyond the index note.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences with no filler. The main purpose is front-loaded, and the implementation detail is relevant and brief.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only lookup, the core functionality is covered, and the index behavior is a useful addition. However, it does not describe output shape or limitations, and it does not relate to sibling tools, leaving some context gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% because both parameters are described. The description adds little beyond the schema: 'path' is already explained as a vault-relative target path, and 'include_context' is already described as including text around the link.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb-resource pair ('Find notes that link to one target note') and scopes the operation to a single target note. It does not explicitly name a sibling alternative like get_outlinks, but the reverse-link focus is evident.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus related tools such as get_outlinks, find_broken_links, or link_stats. The only additional note is an implementation detail about using the rebuildable index, not a usage condition.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.