Skip to main content
Glama
ferronicardoso

mcp-obsidian

get_backlinks

Find all notes in an Obsidian vault that link to a specific note via [[wikilink]]. Provide the note's relative path to retrieve its backlinks.

Instructions

Lists the notes in the vault that reference the given note via [[wikilink]].

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesRelative path of the note inside the vault

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It makes the read-only, listing nature clear and restricts matches to [[wikilink]] references, but it does not disclose edge cases like missing notes, output format, or ordering.

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?

A single, front-loaded sentence communicates the exact behavior with zero filler. Every word earns its place, and the wikilink qualifier adds precision without bloat.

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

Completeness4/5

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

For a simple one-parameter listing tool, the description is adequate: it names the resource, the filtering relationship, and the data type involved. The lack of an output schema is mitigated by the straightforward 'lists the notes' phrasing, though exact return formatting remains unspecified.

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%, and the description does not add meaningful semantics beyond the path parameter. The 'given note' wording connects the parameter to the tool's purpose, but the schema already provides the necessary definition of path as a vault-relative path.

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

Purpose5/5

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

The description states a specific verb ('Lists'), a clear resource ('notes in the vault'), and a precise relationship ('reference the given note via [[wikilink]]'). This makes the tool's purpose distinct from siblings like list_notes or search_notes.

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

Usage Guidelines3/5

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

The description implies the use case: find inbound wikilink references to a specific note. However, it does not explicitly mention alternatives or when not to use this tool, so an agent must infer contrast with siblings rather than being told.

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