move_note_tool
Transfer and reorganize notes within Obsidian vaults by moving them to new locations, with an option to automatically update links for consistency.
Instructions
Move a note to a new location, optionally updating all links.
Args:
source_path: Current path of the note
destination_path: New path for the note
update_links: Whether to update links in other notes (default: true)
Returns:
Move status and updated links count
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ctx | No | ||
destination_path | Yes | ||
source_path | Yes | ||
update_links | No |
Input Schema (JSON Schema)
{
"properties": {
"ctx": {
"default": null,
"title": "Ctx"
},
"destination_path": {
"title": "Destination Path",
"type": "string"
},
"source_path": {
"title": "Source Path",
"type": "string"
},
"update_links": {
"default": true,
"title": "Update Links",
"type": "boolean"
}
},
"required": [
"source_path",
"destination_path"
],
"type": "object"
}