create_event_tool
Add calendar events to Google Calendar by specifying title, time, attendees, and location through the Apps Script MCP server.
Instructions
Create a new calendar event.
Args: user_google_email: The user's Google email address summary: Event title start_time: Start time in ISO format (e.g., "2024-01-15T09:00:00") or date for all-day (e.g., "2024-01-15") end_time: End time in ISO format (e.g., "2024-01-15T10:00:00") or date for all-day (e.g., "2024-01-16") calendar_id: Calendar ID (default: 'primary') description: Optional event description location: Optional event location attendees: Optional comma-separated list of attendee emails all_day: If True, create an all-day event (use date format for start/end)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_google_email | Yes | ||
| summary | Yes | ||
| start_time | Yes | ||
| end_time | Yes | ||
| calendar_id | No | primary | |
| description | No | ||
| location | No | ||
| attendees | No | ||
| all_day | No |