| name | description | allowed-tools |
|---|---|---|
obsidian |
Execute Obsidian CLI commands on this vault. Use for searching notes, managing properties, listing files, working with tags, and other vault operations. |
Bash(obsidian *) |
Execute Obsidian CLI commands on this vault.
Search & Discovery:
obsidian search query="<text>"- Search vault for textobsidian files- List all files in vaultobsidian tags- List all tagsobsidian orphans- Find notes with no incoming linksobsidian deadends- Find notes with no outgoing links
Properties & Metadata:
obsidian properties- List all properties in vaultobsidian property:set name=<key> value=<value> path="<file>"- Set a property on a fileobsidian property:read name=<key> path="<file>"- Read a property value
File Operations:
obsidian read path="<file>"- Read file contentsobsidian create name="<name>" content="<text>"- Create a new fileobsidian append path="<file>" content="<text>"- Append to a fileobsidian open path="<file>"- Open a file in Obsidian
Daily Notes:
obsidian daily- Open today's daily noteobsidian daily:read- Read today's daily noteobsidian daily:append content="<text>"- Append to today's daily note
Analysis:
obsidian backlinks path="<file>"- List backlinks to a fileobsidian links path="<file>"- List outgoing links from a fileobsidian vault info=files- Get vault statistics
- All paths are relative to the vault root
- Quote file paths that contain spaces
- Use
obsidian helpto see all available commands - Use
obsidian help <command>for detailed command help
Search for notes about design:
/obsidian search query="design"
Add an author to a note:
/obsidian property:set name=author value="[[Jane Doe]]" path="Notes/My Note.md"
Find all notes with no backlinks:
/obsidian orphans