Get Daily Note
vault_get_daily_noteRead a daily note by date from an Obsidian vault. Resolves the correct file path automatically using vault settings, and returns the note content and whether it exists.
Instructions
Read a daily note by date, using the vault's configured Daily Notes folder and date format (from .obsidian/daily-notes.json). Defaults to today if no date is provided.
Example: vault_get_daily_note({ date: "2026-05-13" })
When to use: When you need today's or a specific date's daily note. Handles path resolution automatically using the vault's Obsidian config — you don't need to know the folder name or filename format. To append content to a daily note section, use the returned path with vault_patch_note.
Errors:
"invalid date" — use YYYY-MM-DD format (e.g. "2026-05-13")
Returns: JSON with path (resolved vault-relative path), content (note body or null), and exists (boolean). When exists is false, use vault_write_note with the returned path to create the note.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date in YYYY-MM-DD format (defaults to today in server timezone) |