list-week-events
Retrieve events for a specific week from the macOS Calendar app. Input the week start date and optional calendar name to list scheduled events directly without OAuth setup.
Instructions
列出指定周的事件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendar | No | 日历名称 | 工作 |
weekStart | Yes | 周开始日期,格式:YYYY-MM-DD |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"calendar": {
"default": "工作",
"description": "日历名称",
"type": "string"
},
"weekStart": {
"description": "周开始日期,格式:YYYY-MM-DD",
"type": "string"
}
},
"required": [
"weekStart"
],
"type": "object"
}