get_periodic_note_info
Retrieve information about periodic notes from your Obsidian vault, including daily, weekly, monthly, or yearly entries for specific dates.
Instructions
Get info about a periodic note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date (YYYY-MM-DD), defaults to today | |
type | Yes | Note type | |
vault | Yes | Vault name |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date (YYYY-MM-DD), defaults to today",
"type": "string"
},
"type": {
"description": "Note type",
"enum": [
"daily",
"weekly",
"monthly",
"yearly"
],
"type": "string"
},
"vault": {
"description": "Vault name",
"type": "string"
}
},
"required": [
"vault",
"type"
],
"type": "object"
}