Google Calendar

GOOGLECALENDAR_PATCH_CALENDAR

Partially updates (PATCHes) an existing Google Calendar, modifying only the fields provided; `summary` is mandatory and cannot be an empty string, and an empty string for `description` or `location` clears them.

Remote googlecalendar

Other tools also called GOOGLECALENDAR_PATCH_CALENDAR? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "summary": {
      "type": "string",
      "description": "New title for the calendar; cannot be an empty string.\nExamples:\n  \"Team Meetings\"\n  \"Project Alpha Milestones\""
    },
    "location": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "New geographic location of the calendar (e.g., 'Paris, France').\nExamples:\n  \"Paris, France\"\n  \"London\""
    },
    "timezone": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "New IANA Time Zone Database name for the calendar (e.g., 'Europe/Zurich', 'America/New_York').\nExamples:\n  \"Europe/Zurich\"\n  \"America/New_York\"\n  \"Asia/Tokyo\""
    },
    "calendar_id": {
      "type": "string",
      "description": "Identifier of the Google Calendar to update; use 'primary' for the main calendar or a specific ID.\nExamples:\n  \"primary\"\n  \"secondaryCalendarIdAbc...\"\n  \"[email protected]\""
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "New description for the calendar."
    }
  }
}