Skip to main content
Glama

Google Workspace MCP Server

by ZatesloFL

create_event

Schedule events in Google Calendar by specifying details like time, location, and attendees. Optionally include Google Meet, reminders, attachments, and custom timezones.

Instructions

Creates a new event.

Args: user_google_email (str): The user's Google email address. Required. summary (str): Event title. start_time (str): Start time (RFC3339, e.g., "2023-10-27T10:00:00-07:00" or "2023-10-27" for all-day). end_time (str): End time (RFC3339, e.g., "2023-10-27T11:00:00-07:00" or "2023-10-28" for all-day). calendar_id (str): Calendar ID (default: 'primary'). description (Optional[str]): Event description. location (Optional[str]): Event location. attendees (Optional[List[str]]): Attendee email addresses. timezone (Optional[str]): Timezone (e.g., "America/New_York"). attachments (Optional[List[str]]): List of Google Drive file URLs or IDs to attach to the event. add_google_meet (bool): Whether to add a Google Meet video conference to the event. Defaults to False. reminders (Optional[Union[str, List[Dict[str, Any]]]]): JSON string or list of reminder objects. Each should have 'method' ("popup" or "email") and 'minutes' (0-40320). Max 5 reminders. Example: '[{"method": "popup", "minutes": 15}]' or [{"method": "popup", "minutes": 15}] use_default_reminders (bool): Whether to use calendar's default reminders. If False, uses custom reminders. Defaults to True.

Returns: str: Confirmation message of the successful event creation with event link.

Input Schema

NameRequiredDescriptionDefault
add_google_meetNo
attachmentsNo
attendeesNo
calendar_idNoprimary
descriptionNo
end_timeYes
locationNo
remindersNo
start_timeYes
summaryYes
timezoneNo
use_default_remindersNo
user_google_emailYes

Input Schema (JSON Schema)

{ "properties": { "add_google_meet": { "default": false, "title": "Add Google Meet", "type": "boolean" }, "attachments": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Attachments" }, "attendees": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Attendees" }, "calendar_id": { "default": "primary", "title": "Calendar Id", "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Description" }, "end_time": { "title": "End Time", "type": "string" }, "location": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Location" }, "reminders": { "anyOf": [ { "type": "string" }, { "items": { "additionalProperties": true, "type": "object" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Reminders" }, "start_time": { "title": "Start Time", "type": "string" }, "summary": { "title": "Summary", "type": "string" }, "timezone": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Timezone" }, "use_default_reminders": { "default": true, "title": "Use Default Reminders", "type": "boolean" }, "user_google_email": { "title": "User Google Email", "type": "string" } }, "required": [ "user_google_email", "summary", "start_time", "end_time" ], "type": "object" }

Other Tools from Google Workspace MCP Server

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/ZatesloFL/google_workspace_mcp'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server