New to Claude Skills? Learn how to install them →

sickn33 on GitHub

Cal.com Automation

Free

Streamline your Cal.com scheduling tasks effortlessly.

Get this skill

Free · Opens the source repo

What Cal.com Automation does

Cal.com Automation via Rube MCP provides a robust solution for automating scheduling operations on Cal.com. By leveraging Composio's Cal toolkit, users can manage bookings, check availability, configure webhooks, and handle teams with ease. This skill is particularly beneficial for developers and designers looking to integrate Cal.com functionalities into their applications or workflows without manual intervention.

To utilize this skill, users must connect to Rube MCP and ensure an active connection to Cal.com. The setup process is straightforward, requiring only the addition of the Rube MCP endpoint. Once connected, users can access a variety of workflows designed to simplify common scheduling tasks. For instance, managing bookings allows users to list, create, or review bookings with specific filters, ensuring they can efficiently handle their scheduling needs.

Additionally, the skill includes features for checking availability, which helps users find free times or available booking slots. This is crucial for optimizing scheduling, especially when coordinating meetings or events across different time zones. The ability to configure webhooks further enhances the automation capabilities, allowing users to receive notifications for various booking events seamlessly.

Overall, Cal.com Automation is an essential tool for anyone looking to enhance their scheduling processes on Cal.com. It is designed for users who require a streamlined approach to managing bookings and availability, making it a valuable addition to any developer or designer's toolkit.

When to use it

Use this skill when you need to automate booking management, check availability, or set up webhooks for notifications.

When not to use it

This skill may not be suitable for users who do not require automation or those who prefer manual scheduling methods.

What you can build with it

Automating Booking Creation

Use the skill to automatically check for available slots and create bookings based on user selections.

Setting Up Notifications

Configure webhooks to receive real-time notifications for events like booking cancellations or reschedules.

Managing Team Schedules

Easily manage teams and their event types to streamline scheduling across multiple users.

How to install Cal.com Automation

View source

1. Install with the skills CLI

npx skills add sickn33/agentic-awesome-skills/cal-com-automation --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by sickn33

Cal.com Automation via Rube MCP

Automate Cal.com scheduling operations through Composio's Cal toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Cal.com connection via RUBE_MANAGE_CONNECTIONS with toolkit cal
  • Always call RUBE_SEARCH_TOOLS first 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.

  1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
  2. Call RUBE_MANAGE_CONNECTIONS with toolkit cal
  3. If connection is not ACTIVE, follow the returned auth link to complete Cal.com authentication
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Manage Bookings

When to use: User wants to list, create, or review bookings

Tool sequence:

  1. CAL_FETCH_ALL_BOOKINGS - List all bookings with filters [Required]
  2. CAL_POST_NEW_BOOKING_REQUEST - Create a new booking [Optional]

Key parameters for listing:

  • status: Filter by booking status ('upcoming', 'recurring', 'past', 'cancelled', 'unconfirmed')
  • afterStart: Filter bookings after this date (ISO 8601)
  • beforeEnd: Filter bookings before this date (ISO 8601)

Key parameters for creation:

  • eventTypeId: Event type ID for the booking
  • start: Booking start time (ISO 8601)
  • end: Booking end time (ISO 8601)
  • name: Attendee name
  • email: Attendee email
  • timeZone: Attendee timezone (IANA format)
  • language: Attendee language code
  • metadata: Additional metadata object

Pitfalls:

  • Date filters use ISO 8601 format with timezone (e.g., '2024-01-15T09:00:00Z')
  • eventTypeId must reference a valid, active event type
  • Booking creation requires matching an available slot; check availability first
  • Time zone must be a valid IANA timezone string (e.g., 'America/New_York')
  • Status filter values are specific strings; invalid values return empty results

2. Check Availability

When to use: User wants to find free/busy times or available booking slots

Tool sequence:

  1. CAL_RETRIEVE_CALENDAR_BUSY_TIMES - Get busy time blocks [Required]
  2. CAL_GET_AVAILABLE_SLOTS_INFO - Get specific available slots [Required]

Key parameters:

  • dateFrom: Start date for availability check (YYYY-MM-DD)
  • dateTo: End date for availability check (YYYY-MM-DD)
  • eventTypeId: Event type to check slots for
  • timeZone: Timezone for the availability response
  • loggedInUsersTz: Timezone of the requesting user

Pitfalls:

  • Busy times show when the user is NOT available
  • Available slots are specific to an event type's duration and configuration
  • Date range should be reasonable (not months in advance) to get accurate results
  • Timezone affects how slots are displayed; always specify explicitly
  • Availability reflects calendar integrations (Google Calendar, Outlook, etc.)

3. Configure Webhooks

When to use: User wants to set up or manage webhook notifications for booking events

Tool sequence:

  1. CAL_RETRIEVE_WEBHOOKS_LIST - List existing webhooks [Required]
  2. CAL_GET_WEBHOOK_BY_ID - Get specific webhook details [Optional]
  3. CAL_UPDATE_WEBHOOK_BY_ID - Update webhook configuration [Optional]
  4. CAL_DELETE_WEBHOOK_BY_ID - Remove a webhook [Optional]

Key parameters:

  • id: Webhook ID for GET/UPDATE/DELETE operations
  • subscriberUrl: Webhook endpoint URL
  • eventTriggers: Array of event types to trigger on
  • active: Whether the webhook is active
  • secret: Webhook signing secret

Pitfalls:

  • Webhook URLs must be publicly accessible HTTPS endpoints
  • Event triggers include: 'BOOKING_CREATED', 'BOOKING_RESCHEDULED', 'BOOKING_CANCELLED', etc.
  • Inactive webhooks do not fire; toggle active to enable/disable
  • Webhook secrets are used for payload signature verification

4. Manage Teams

When to use: User wants to create, view, or manage teams and team event types

Tool sequence:

  1. CAL_GET_TEAMS_LIST - List all teams [Required]
  2. CAL_GET_TEAM_INFORMATION_BY_TEAM_ID - Get specific team details [Optional]
  3. CAL_CREATE_TEAM_IN_ORGANIZATION - Create a new team [Optional]
  4. CAL_RETRIEVE_TEAM_EVENT_TYPES - List event types for a team [Optional]

Key parameters:

  • teamId: Team identifier
  • name: Team name (for creation)
  • slug: URL-friendly team identifier

Pitfalls:

  • Team creation may require organization-level permissions
  • Team event types are separate from personal event types
  • Team slugs must be URL-safe and unique within the organization

5. Organization Management

When to use: User wants to view organization details

Tool sequence:

  1. CAL_GET_ORGANIZATION_ID - Get the organization ID [Required]

Key parameters: (none required)

Pitfalls:

  • Organization ID is needed for team creation and org-level operations
  • Not all Cal.com accounts have organizations; personal plans may return errors

Common Patterns

Booking Creation Flow

1. Call CAL_GET_AVAILABLE_SLOTS_INFO to find open slots
2. Present available times to the user
3. Call CAL_POST_NEW_BOOKING_REQUEST with selected slot
4. Confirm booking creation response

ID Resolution

Team name -> Team ID:

1. Call CAL_GET_TEAMS_LIST
2. Find team by name in response
3. Extract id field

Webhook Setup

1. Call CAL_RETRIEVE_WEBHOOKS_LIST to check existing hooks
2. Create or update webhook with desired triggers
3. Verify webhook fires on test booking

Known Pitfalls

Date/Time Formats:

  • Booking times: ISO 8601 with timezone (e.g., '2024-01-15T09:00:00Z')
  • Availability dates: YYYY-MM-DD format
  • Always specify timezone explicitly to avoid confusion

Event Types:

  • Event type IDs are numeric integers
  • Event types define duration, location, and booking rules
  • Disabled event types cannot accept new bookings

Permissions:

  • Team operations require team membership or admin access
  • Organization operations require org-level permissions
  • Webhook management requires appropriate access level

Rate Limits:

  • Cal.com API has rate limits per API key
  • Implement backoff on 429 responses

Quick Reference

TaskTool SlugKey Params
List bookingsCAL_FETCH_ALL_BOOKINGSstatus, afterStart, beforeEnd
Create bookingCAL_POST_NEW_BOOKING_REQUESTeventTypeId, start, end, name, email
Get busy timesCAL_RETRIEVE_CALENDAR_BUSY_TIMESdateFrom, dateTo
Get available slotsCAL_GET_AVAILABLE_SLOTS_INFOeventTypeId, dateFrom, dateTo
List webhooksCAL_RETRIEVE_WEBHOOKS_LIST(none)
Get webhookCAL_GET_WEBHOOK_BY_IDid
Update webhookCAL_UPDATE_WEBHOOK_BY_IDid, subscriberUrl, eventTriggers
Delete webhookCAL_DELETE_WEBHOOK_BY_IDid
List teamsCAL_GET_TEAMS_LIST(none)
Get teamCAL_GET_TEAM_INFORMATION_BY_TEAM_IDteamId
Create teamCAL_CREATE_TEAM_IN_ORGANIZATIONname, slug
Team event typesCAL_RETRIEVE_TEAM_EVENT_TYPESteamId
Get org IDCAL_GET_ORGANIZATION_ID(none)

When to Use

This skill is applicable to execute the workflow or actions described in the overview.

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

Frequently asked questions about Cal.com Automation

Similar skills