update_event_tool
Modify existing Google Calendar events by updating details like title, time, location, attendees, or description through the Apps Script MCP server.
Instructions
Update an existing calendar event.
Args: user_google_email: The user's Google email address event_id: The event ID to update calendar_id: Calendar ID (default: 'primary') summary: New event title (optional) start_time: New start time in ISO format (optional) end_time: New end time in ISO format (optional) description: New description (optional) location: New location (optional) attendees: New comma-separated list of attendee emails (optional) all_day: If True and updating times, use date format
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_google_email | Yes | ||
| event_id | Yes | ||
| calendar_id | No | primary | |
| summary | No | ||
| start_time | No | ||
| end_time | No | ||
| description | No | ||
| location | No | ||
| attendees | No | ||
| all_day | No |