Add attendees
add_attendeeAdds attendees to an existing calendar event by appending the provided email addresses to the current attendee list. Optionally sends email notifications to the new attendees.
Instructions
Invite one or more people to an existing event.
Existing attendees are kept; the new addresses are appended.
Args:
event_id: The event to invite people to (from find_events).
attendee_emails: Email addresses to invite.
calendar_id: Calendar the event lives on.
send_notifications: Whether Google emails the attendees. Default true.
account: Account name from 'calendar-mcp accounts'; omit for the default.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| event_id | Yes | ||
| calendar_id | No | primary | |
| attendee_emails | Yes | ||
| send_notifications | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| event | Yes | The event after the operation. | |
| message | No | One-line human-readable summary of what happened. | |
| calendar_id | Yes | Calendar the event lives on. |