calendar_add
Add new events to macOS Calendar by specifying title, start time, and end time. Optionally assign a specific calendar for organization. Simplifies event creation using AppleScript.
Instructions
[Calendar operations] Add a new event to Calendar
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendar | No | Calendar name (optional) | Calendar |
endDate | Yes | End date and time (YYYY-MM-DD HH:MM:SS) | |
startDate | Yes | Start date and time (YYYY-MM-DD HH:MM:SS) | |
title | Yes | Event title |
Input Schema (JSON Schema)
{
"properties": {
"calendar": {
"default": "Calendar",
"description": "Calendar name (optional)",
"type": "string"
},
"endDate": {
"description": "End date and time (YYYY-MM-DD HH:MM:SS)",
"type": "string"
},
"startDate": {
"description": "Start date and time (YYYY-MM-DD HH:MM:SS)",
"type": "string"
},
"title": {
"description": "Event title",
"type": "string"
}
},
"required": [
"title",
"startDate",
"endDate"
],
"type": "object"
}