applescript-mcp

calendar_add

[Calendar operations] Add a new event to Calendar

Input Schema

NameRequiredDescriptionDefault
calendarNoCalendar name (optional)Calendar
endDateYesEnd date and time (YYYY-MM-DD HH:MM:SS)
startDateYesStart date and time (YYYY-MM-DD HH:MM:SS)
titleYesEvent 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" }