Google Super

GOOGLESUPER_QUICK_ADD

Parses natural language text to quickly create a basic Google Calendar event with its title, date, and time, suitable for simple scheduling; does not support direct attendee addition or recurring events, and `calendar_id` must be valid if not 'primary'.

Remote googlesuper

Other tools also called GOOGLESUPER_QUICK_ADD? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "title": "Text",
      "default": "",
      "examples": [
        "Appointment at Somewhere on June 3rd 10am-10:25am",
        "Dentist appointment tomorrow at 2pm for 45 minutes"
      ],
      "description": "Natural language input describing the event; Google Calendar parses this for event details like title, date, and time."
    },
    "calendar_id": {
      "type": "string",
      "title": "Calendar Id",
      "default": "primary",
      "examples": [
        "primary",
        "[email protected]",
        "[email protected]"
      ],
      "description": "Identifier of the calendar for the event. Use 'primary' for the main calendar, or provide a specific calendar ID (e.g., email address)."
    },
    "send_updates": {
      "enum": [
        "all",
        "externalOnly",
        "none"
      ],
      "type": "string",
      "title": "Send Updates",
      "default": "none",
      "description": "Controls whether email notifications about the event creation are sent to attendees."
    }
  }
}