Google Calendar

gcal_add_calendar

Subscribe to an existing calendar by its ID. Adds the calendar to the user's calendar list.

Remote node2flow/google-calendar

Other tools also called gcal_add_calendar? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Calendar ID to subscribe to (e.g., \"[email protected]\" or a group calendar ID)"
    },
    "hidden": {
      "type": "boolean",
      "description": "Whether to hide this calendar from the list"
    },
    "color_id": {
      "type": "string",
      "description": "Display color ID for this calendar (use gcal_get_colors)"
    },
    "selected": {
      "type": "boolean",
      "description": "Whether events are shown by default"
    },
    "summary_override": {
      "type": "string",
      "description": "Custom display name for this calendar (overrides the calendar's own name)"
    }
  }
}