Get a note + its 1-hop graph neighborhood
obsidian_get_note_neighborsRetrieve a note's local graph neighborhood including outbound wikilinks, inbound backlinks, and tag-related siblings in a single call.
Instructions
Return a note's immediate graph neighborhood in one call: outbound wikilinks (resolved), inbound backlinks (with count), and tag-cluster siblings (notes sharing ≥1 tag, excluding outbound/inbound). Replaces the read_note → backlinks → outbound → resolve_wikilink chain with a single round-trip — designed for RAG-style 'give the LLM enough context to reason about THIS note'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Vault-relative path to the center note | |
| title | No | Center note title (alternative to path) | |
| max_per_bucket | No | Cap each bucket (outbound/inbound/tag_siblings). Default 20. |