Google Calendar
GOOGLECALENDAR_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 googlecalendar
Other tools also called GOOGLECALENDAR_QUICK_ADD?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"text": {
"type": "string",
"default": "",
"description": "Natural language input describing the event; Google Calendar parses this for event details like title, date, and time.\nExamples:\n \"Appointment at Somewhere on June 3rd 10am-10:25am\"\n \"Dentist appointment tomorrow at 2pm for 45 minutes\""
},
"calendar_id": {
"type": "string",
"default": "primary",
"description": "Identifier of the calendar for the event. Use 'primary' for the main calendar, or provide a specific calendar ID (e.g., email address).\nExamples:\n \"primary\"\n \"[email protected]\"\n \"[email protected]\""
},
"send_updates": {
"enum": [
"all",
"externalOnly",
"none"
],
"type": "string",
"default": "none",
"description": "Controls whether email notifications about the event creation are sent to attendees."
}
}
}