search_calendar_events
Find calendar events using text search or date range filters to locate specific appointments, meetings, and scheduled activities in your Obsidian vault.
Instructions
Search calendar events by text query or date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_from | No | ||
date_to | No | ||
max_results | No | ||
query | No |
Input Schema (JSON Schema)
{
"properties": {
"date_from": {
"default": "",
"title": "Date From",
"type": "string"
},
"date_to": {
"default": "",
"title": "Date To",
"type": "string"
},
"max_results": {
"default": 20,
"title": "Max Results",
"type": "integer"
},
"query": {
"default": "",
"title": "Query",
"type": "string"
}
},
"type": "object"
}