create_event
Schedule a new calendar event with title, start and end times, location, description, and attendee emails using the Google Workspace MCP Server.
Instructions
Create a new calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attendees | No | List of attendee email addresses | |
description | No | Event description | |
end | Yes | End time in ISO format | |
location | No | Event location | |
start | Yes | Start time in ISO format | |
summary | Yes | Event title |
Input Schema (JSON Schema)
{
"properties": {
"attendees": {
"description": "List of attendee email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "Event description",
"type": "string"
},
"end": {
"description": "End time in ISO format",
"type": "string"
},
"location": {
"description": "Event location",
"type": "string"
},
"start": {
"description": "Start time in ISO format",
"type": "string"
},
"summary": {
"description": "Event title",
"type": "string"
}
},
"required": [
"summary",
"start",
"end"
],
"type": "object"
}