get_daily_note
Retrieve a daily note from your Obsidian vault for a specific date, handling common naming conventions and file locations via a local REST API.
Instructions
Get daily note for a specific date. Handles common daily note naming conventions and file locations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date (today, yesterday, tomorrow, or YYYY-MM-DD) | today |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"default": "today",
"description": "Date (today, yesterday, tomorrow, or YYYY-MM-DD)",
"type": "string"
}
},
"type": "object"
}