calendar_create_event
ActiveTool of io.github.saloprj/dialogbrain
declared in 1.17.0
Create a new event in Google Calendar. Specify the title, start time, end time, and optionally invite attendees. Use ISO 8601 format for dates (e.g., 2024-12-15T14:00:00).
Parameters schema
{
"type": "object",
"required": [],
"properties": {
"end": {
"type": "string",
"description": "Event end time in ISO 8601 format. If not provided, defaults to 1 hour after start. Also accepts 'end_time' as alias."
},
"start": {
"type": "string",
"description": "Event start time in ISO 8601 format (e.g., 2024-12-15T14:00:00). Also accepts 'start_time' as alias."
},
"title": {
"type": "string",
"description": "Alias for summary - event title."
},
"summary": {
"type": "string",
"description": "Event title/summary. Required. Also accepts 'title' as alias."
},
"end_time": {
"type": "string",
"description": "Alias for end - event end time."
},
"location": {
"type": "string",
"description": "Event location (physical address or virtual meeting link)."
},
"timezone": {
"type": "string",
"description": "Timezone for the event (e.g., 'America/New_York', 'UTC')."
},
"attendees": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of attendee email addresses to invite."
},
"start_time": {
"type": "string",
"description": "Alias for start - event start time in ISO 8601 format."
},
"calendar_id": {
"type": "string",
"default": "primary",
"description": "Calendar ID to create event in. Defaults to primary calendar."
},
"description": {
"type": "string",
"description": "Event description/notes."
},
"add_google_meet": {
"type": "boolean",
"description": "If true, automatically creates a Google Meet link for the event. OMIT to skip Meet link."
},
"conference_data": {
"type": "object",
"description": "Conference data for Google Meet. Alternative to add_google_meet flag."
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries