update_event
Modify existing calendar events by updating attendees, description, start/end times, location, or title using the Google Workspace MCP Server tool.
Instructions
Update an existing calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attendees | No | New list of attendee email addresses | |
description | No | New event description | |
end | No | New end time in ISO format | |
eventId | Yes | Event ID to update | |
location | No | New event location | |
start | No | New start time in ISO format | |
summary | No | New event title |
Input Schema (JSON Schema)
{
"properties": {
"attendees": {
"description": "New list of attendee email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "New event description",
"type": "string"
},
"end": {
"description": "New end time in ISO format",
"type": "string"
},
"eventId": {
"description": "Event ID to update",
"type": "string"
},
"location": {
"description": "New event location",
"type": "string"
},
"start": {
"description": "New start time in ISO format",
"type": "string"
},
"summary": {
"description": "New event title",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}