google-calendar-automation
Automate Google Calendar tasks like booking meetings and checking availability through MCP tools.
Install
mkdir -p .claude/skills/google-calendar-automation-aaaaqwq && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11689" && unzip -o skill.zip -d .claude/skills/google-calendar-automation-aaaaqwq && rm skill.zipInstalls to .claude/skills/google-calendar-automation-aaaaqwq
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Automate Google Calendar events, scheduling, availability checks, and attendee management via Rube MCP (Composio). Create events, find free slots, manage attendees, and list calendars programmatically.Key capabilities
- →Create, update, or delete Google Calendar events
- →Find free time slots across calendars
- →List and search for events within a time range
- →Add or remove attendees from events
- →Check free/busy status for specified calendars
- →Get current date and time with proper timezone
How it works
The skill interacts with Google Calendar through Rube MCP, using specific tools to perform actions like creating events, finding free slots, and managing attendees based on provided parameters.
Inputs & outputs
When to use google-calendar-automation
- →Create a meeting event
- →Find free time for a meeting
- →List calendar events
- →Manage meeting attendees
About this skill
Google Calendar Automation via Rube MCP
Automate Google Calendar workflows including event creation, scheduling, availability checks, attendee management, and calendar browsing through Composio's Google Calendar toolkit.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Google Calendar connection via
RUBE_MANAGE_CONNECTIONSwith toolkitgooglecalendar - Always call
RUBE_SEARCH_TOOLSfirst to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLSresponds - Call
RUBE_MANAGE_CONNECTIONSwith toolkitgooglecalendar - If connection is not ACTIVE, follow the returned auth link to complete Google OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Create and Manage Events
When to use: User wants to create, update, or delete calendar events
Tool sequence:
GOOGLECALENDAR_LIST_CALENDARS- Identify target calendar ID [Prerequisite]GOOGLECALENDAR_GET_CURRENT_DATE_TIME- Get current time with proper timezone [Optional]GOOGLECALENDAR_FIND_FREE_SLOTS- Check availability before booking [Optional]GOOGLECALENDAR_CREATE_EVENT- Create the event [Required]GOOGLECALENDAR_PATCH_EVENT- Update specific fields of an existing event [Alternative]GOOGLECALENDAR_UPDATE_EVENT- Full replacement update of an event [Alternative]GOOGLECALENDAR_DELETE_EVENT- Delete an event [Optional]
Key parameters:
calendar_id: Use 'primary' for main calendar, or specific calendar IDstart_datetime: ISO 8601 format 'YYYY-MM-DDTHH:MM:SS' (NOT natural language)timezone: IANA timezone name (e.g., 'America/New_York', NOT 'EST' or 'PST')event_duration_hour: Hours (0+)event_duration_minutes: Minutes (0-59 only; NEVER use 60+)summary: Event titleattendees: Array of email addresses (NOT names)location: Free-form text for event location
Pitfalls:
start_datetimemust be ISO 8601; natural language like 'tomorrow' is rejectedevent_duration_minutesmax is 59; useevent_duration_hour=1instead ofevent_duration_minutes=60timezonemust be IANA identifier; abbreviations like 'EST', 'PST' are NOT validattendeesonly accepts email addresses, not names; resolve names first- Google Meet link creation defaults to true; may fail on personal Gmail accounts (graceful fallback)
- Organizer is auto-added as attendee unless
exclude_organizer=true
2. List and Search Events
When to use: User wants to find or browse events on their calendar
Tool sequence:
GOOGLECALENDAR_LIST_CALENDARS- Get available calendars [Prerequisite]GOOGLECALENDAR_FIND_EVENT- Search by title/keyword with time bounds [Required]GOOGLECALENDAR_EVENTS_LIST- List events in a time range [Alternative]GOOGLECALENDAR_EVENTS_INSTANCES- List instances of a recurring event [Optional]
Key parameters:
query/q: Free-text search (matches summary, description, location, attendees)timeMin: Lower bound (RFC3339 with timezone offset, e.g., '2024-01-01T00:00:00-08:00')timeMax: Upper bound (RFC3339 with timezone offset)singleEvents: true to expand recurring events into instancesorderBy: 'startTime' (requires singleEvents=true) or 'updated'maxResults: Results per page (max 2500)
Pitfalls:
- Timezone warning: UTC timestamps (ending in 'Z') don't align with local dates; use local timezone offsets instead
- Example: '2026-01-19T00:00:00Z' covers 2026-01-18 4pm to 2026-01-19 4pm in PST
- Omitting
timeMin/timeMaxscans the full calendar and can be slow pageTokenin response means more results; paginate until absentorderBy='startTime'requiressingleEvents=true
3. Manage Attendees and Invitations
When to use: User wants to add, remove, or update event attendees
Tool sequence:
GOOGLECALENDAR_FIND_EVENTorGOOGLECALENDAR_EVENTS_LIST- Find the event [Prerequisite]GOOGLECALENDAR_PATCH_EVENT- Add attendees (replaces entire attendees list) [Required]GOOGLECALENDAR_REMOVE_ATTENDEE- Remove a specific attendee by email [Required]
Key parameters:
event_id: Unique event identifier (opaque string, NOT the event title)attendees: Full list of attendee emails (PATCH replaces entire list)attendee_email: Email to removesend_updates: 'all', 'externalOnly', or 'none'
Pitfalls:
event_idis a technical identifier, NOT the event title; always search first to get the IDPATCH_EVENTattendees field replaces the entire list; include existing attendees to avoid removing them- Attendee names cannot be resolved; always use email addresses
- Use
GMAIL_SEARCH_PEOPLEto resolve names to emails before managing attendees
4. Check Availability and Free/Busy Status
When to use: User wants to find available time slots or check busy periods
Tool sequence:
GOOGLECALENDAR_LIST_CALENDARS- Identify calendars to check [Prerequisite]GOOGLECALENDAR_GET_CURRENT_DATE_TIME- Get current time with timezone [Optional]GOOGLECALENDAR_FIND_FREE_SLOTS- Find free intervals across calendars [Required]GOOGLECALENDAR_FREE_BUSY_QUERY- Get raw busy periods for computing gaps [Fallback]GOOGLECALENDAR_CREATE_EVENT- Book a confirmed slot [Required]
Key parameters:
items: List of calendar IDs to check (e.g., ['primary'])time_min/time_max: Query interval (defaults to current day if omitted)timezone: IANA timezone for interpreting naive timestampscalendarExpansionMax: Max calendars (1-50)groupExpansionMax: Max members per group (1-100)
Pitfalls:
- Maximum span ~90 days per Google Calendar freeBusy API limit
- Very long ranges or inaccessible calendars yield empty/invalid results
- Only calendars with at least freeBusyReader access are visible
- Free slots responses may normalize to UTC ('Z'); check offsets
GOOGLECALENDAR_FREE_BUSY_QUERYrequires RFC3339 timestamps with timezone
Common Patterns
ID Resolution
- Calendar name -> calendar_id:
GOOGLECALENDAR_LIST_CALENDARSto enumerate all calendars - Event title -> event_id:
GOOGLECALENDAR_FIND_EVENTorGOOGLECALENDAR_EVENTS_LIST - Attendee name -> email:
GMAIL_SEARCH_PEOPLE
Timezone Handling
- Always use IANA timezone identifiers (e.g., 'America/Los_Angeles')
- Use
GOOGLECALENDAR_GET_CURRENT_DATE_TIMEto get current time in user's timezone - When querying events for a local date, use timestamps with local offset, NOT UTC
- Example: '2026-01-19T00:00:00-08:00' for PST, NOT '2026-01-19T00:00:00Z'
Pagination
GOOGLECALENDAR_EVENTS_LISTreturnsnextPageToken; iterate until absentGOOGLECALENDAR_LIST_CALENDARSalso paginates; usepage_token
Known Pitfalls
- Natural language dates: NOT supported; all dates must be ISO 8601 or RFC3339
- Timezone mismatch: UTC timestamps don't align with local dates for filtering
- Duration limits:
event_duration_minutesmax 59; use hours for longer durations - IANA timezones only: 'EST', 'PST', etc. are NOT valid; use 'America/New_York'
- Event IDs are opaque: Always search to get event_id; never guess or construct
- Attendees as emails: Names cannot be used; resolve with GMAIL_SEARCH_PEOPLE
- PATCH replaces attendees: Include all desired attendees in the array, not just new ones
- Conference limitations: Google Meet may fail on personal accounts (graceful fallback)
- Rate limits: High-volume searches can trigger 403/429; throttle between calls
Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| List calendars | GOOGLECALENDAR_LIST_CALENDARS | max_results |
| Create event | GOOGLECALENDAR_CREATE_EVENT | start_datetime, timezone, summary |
| Update event | GOOGLECALENDAR_PATCH_EVENT | calendar_id, event_id, fields to update |
| Delete event | GOOGLECALENDAR_DELETE_EVENT | calendar_id, event_id |
| Search events | GOOGLECALENDAR_FIND_EVENT | query, timeMin, timeMax |
| List events | GOOGLECALENDAR_EVENTS_LIST | calendarId, timeMin, timeMax |
| Recurring instances | GOOGLECALENDAR_EVENTS_INSTANCES | calendarId, eventId |
| Find free slots | GOOGLECALENDAR_FIND_FREE_SLOTS | items, time_min, time_max, timezone |
| Free/busy query | GOOGLECALENDAR_FREE_BUSY_QUERY | timeMin, timeMax, items |
| Remove attendee | GOOGLECALENDAR_REMOVE_ATTENDEE | event_id, attendee_email |
| Get current time | GOOGLECALENDAR_GET_CURRENT_DATE_TIME | timezone |
| Get calendar | GOOGLECALENDAR_GET_CALENDAR | calendar_id |
When not to use it
- →When natural language dates are required for input
- →When event IDs are not known and cannot be searched for
- →When attendee names need to be used instead of email addresses
Prerequisites
Limitations
- →All dates must be ISO 8601 or RFC3339, natural language dates are not supported
- →Timezone must be IANA identifier (e.g., 'America/New_York'), not abbreviations like 'EST'
- →Attendees only accept email addresses, not names
How it compares
This skill automates Google Calendar operations programmatically via Rube MCP, enabling complex scheduling and management workflows that would otherwise require manual interaction with the Google Calendar interface.
Compared to similar skills
google-calendar-automation side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| google-calendar-automation (this skill) | 0 | 5mo | No flags | Intermediate |
| linear | 10 | 2mo | No flags | Beginner |
| zapier-workflows | 11 | 8mo | Review | Beginner |
| attio-skill-generator | 7 | 7mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by aAAaqwq
View all by aAAaqwq →You might also like
linear
lobehub
Linear issue management guide. Use when working with Linear issues, creating issues, updating status, or adding comments. Triggers on Linear issue references (LOBE-xxx), issue tracking, or project management tasks. Requires Linear MCP tools to be available.
zapier-workflows
davila7
Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to "run" any process. Also handles Perplexity-based research and Google Sheets data tracking.
attio-skill-generator
kesslerio
Generate use-case-specific Attio workflow skills from templates. Use when creating new skills for lead qualification, deal management, customer onboarding, or custom Attio workflows.
automation-brainstorm
MacroMan5
Interactive workflow design advisor for Power Automate, n8n, Make, Zapier and other platforms. Guides users through planning automation workflows with smart questions about triggers, actions, data flow, and error handling. Uses research sub-agent to find best practices and generates detailed implementation plan. Triggers when user mentions "create workflow", "build flow", "design automation", "need ideas for", or describes workflow requirements without having a complete design.
daily-briefing
anthropics
Start your day with a prioritized sales briefing. Works standalone when you tell me your meetings and priorities, supercharged when you connect your calendar, CRM, and email. Trigger with "morning briefing", "daily brief", "what's on my plate today", "prep my day", or "start my day".
jira
davila7
Use when the user mentions Jira issues (e.g., "PROJ-123"), asks about tickets, wants to create/view/update issues, check sprint status, or manage their Jira workflow. Triggers on keywords like "jira", "issue", "ticket", "sprint", "backlog", or issue key patterns.