createCalendar
Generate and manage Apple Calendars on macOS using a structured input format. Define calendar title and color for streamlined organization within the MCP Apple Calendars server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}