find_related_notes
Discover related notes in your Obsidian vault by analyzing shared tags or links from a specified note, enhancing connections and organization within your knowledge base.
Instructions
Find notes related to a given note based on shared tags, links, or backlinks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
on | No | Relationship criteria to use for finding related notes | |
path | Yes | Path to the source note |
Input Schema (JSON Schema)
{
"properties": {
"on": {
"default": [
"tags",
"links"
],
"description": "Relationship criteria to use for finding related notes",
"items": {
"enum": [
"tags",
"links"
],
"type": "string"
},
"type": "array"
},
"path": {
"description": "Path to the source note",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}