obsidian_rename
Rename an Obsidian note by selecting it via file name or exact path, then providing a new name. Updates the note's name within its current folder without moving it.
Instructions
Rename a note, selecting it by file name or exact path.
Wraps the CLI's rename Verb. Provide one of file or path to select the note, and name for the new file name. Renaming changes only the name within the same folder; use obsidian_move to relocate a note to a different folder.
Parameters: file (optional) — note name using wikilink resolution (e.g. 'My Note') path (optional) — exact vault-relative path (e.g. 'folder/My Note.md') name (required) — the new file name One of file or path is required.
Examples: obsidian_rename({ file: "Draft", name: "Final" }) obsidian_rename({ path: "Inbox/idea.md", name: "refined-idea.md" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | No | File name (wikilink resolution) | |
| name | Yes | New file name | |
| path | No | Exact file path |