list_events
Retrieve calendar events within a specified date range from Microsoft Outlook using a local, privacy-focused solution. Input start date, optional end date, and calendar name to view event details.
Instructions
List calendar events within a specified date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendar | No | Calendar name (optional) | |
endDate | No | End date in MM/DD/YYYY format (optional) | |
startDate | Yes | Start date in MM/DD/YYYY format |
Input Schema (JSON Schema)
{
"properties": {
"calendar": {
"description": "Calendar name (optional)",
"type": "string"
},
"endDate": {
"description": "End date in MM/DD/YYYY format (optional)",
"type": "string"
},
"startDate": {
"description": "Start date in MM/DD/YYYY format",
"type": "string"
}
},
"required": [
"startDate"
],
"type": "object"
}