Find similar notes (lexical-hybrid)
obsidian_find_similarRetrieves notes related to a given note by structural graph analysis—tag overlap, title n-grams, shared links, and co-backlinks—returning weighted scores with freshness indicators.
Instructions
Given a note, return up to N other notes that are 'related' — by tag overlap (Jaccard), title 3-gram overlap, shared outbound links, and co-backlinks. Score is a weighted sum of those four signals; each is also returned individually so the caller can re-rank. No embeddings, no native deps — pure structural retrieval over the existing vault graph. Runs O(N) over the whole vault per call; for vaults >5k notes prefer batching. v3.10: each result also carries age_days + a stale flag (from the note's live mtime) so you can prefer fresher related notes or flag aged ones.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | Vault-relative path to the source note | |
| title | No | Source note title (alternative to path) | |
| limit | No | Max similar notes to return (default 10) | |
| min_score | No | Drop hits below this score (default 0.05) |