move_note
Relocate or rename a note within an Obsidian vault by specifying its current and new paths, enabling organized content management and restructuring.
Instructions
Move or rename a note to a new location in the Obsidian vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destinationPath | Yes | New path where the note should be moved | |
sourcePath | Yes | Current path to the note within the vault |
Input Schema (JSON Schema)
{
"properties": {
"destinationPath": {
"description": "New path where the note should be moved",
"type": "string"
},
"sourcePath": {
"description": "Current path to the note within the vault",
"type": "string"
}
},
"required": [
"sourcePath",
"destinationPath"
],
"type": "object"
}