get_related_notes
Find notes connected to a specific note in your Obsidian vault by analyzing link relationships and connections between your knowledge base entries.
Instructions
Get notes related to a specific note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxDepth | No | Maximum link depth (default: 2) | |
path | Yes | Path to the note | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"maxDepth": {
"description": "Maximum link depth (default: 2)",
"type": "number"
},
"path": {
"description": "Path to the note",
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"path"
],
"type": "object"
}