create_event
Schedule new Google Calendar events by specifying summary, start and end times, location, description, and attendee emails via the MCP server.
Instructions
새로운 일정 생성 (attendees: 이메일 리스트)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attendees | No | ||
description | No | ||
end | Yes | ||
location | No | ||
start | Yes | ||
summary | Yes |
Input Schema (JSON Schema)
{
"properties": {
"attendees": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Attendees"
},
"description": {
"default": null,
"title": "Description",
"type": "string"
},
"end": {
"title": "End",
"type": "string"
},
"location": {
"default": null,
"title": "Location",
"type": "string"
},
"start": {
"title": "Start",
"type": "string"
},
"summary": {
"title": "Summary",
"type": "string"
}
},
"required": [
"summary",
"start",
"end"
],
"title": "create_eventArguments",
"type": "object"
}