{
  "name": "create_calendar_event",
  "description": "Create a calendar event",
  "inputSchema": {
    "type": "object",
    "properties": {
      "title": {
        "type": "string",
        "description": "The title of the calendar event"
      },
      "startDate": {
        "type": "string",
        "description": "The start date/time (ISO 8601 format)"
      }
    },
    "required": ["title", "startDate"]
  }
}
