Google Workspace MCP Server

update_event

Update an existing calendar event

Input Schema

NameRequiredDescriptionDefault
attendeesNoNew list of attendee email addresses
descriptionNoNew event description
endNoNew end time in ISO format
eventIdYesEvent ID to update
locationNoNew event location
startNoNew start time in ISO format
summaryNoNew 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" }