Calendly Automation via Rube MCP
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
Automate Calendly operations including event listing, invitee management, scheduling link creation, availability queries, and organization administration through Composio's Calendly toolkit.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Calendly connection via
RUBE_MANAGE_CONNECTIONS with toolkit calendly
- Always call
RUBE_SEARCH_TOOLS first to get current tool schemas
- Many operations require the user's Calendly URI, obtained via
CALENDLY_GET_CURRENT_USER
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_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit calendly
- If connection is not ACTIVE, follow the returned auth link to complete Calendly OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. List and View Scheduled Events
When to use: User wants to see their upcoming, past, or filtered Calendly events
Tool sequence:
CALENDLY_GET_CURRENT_USER - Get authenticated user URI and organization URI [Prerequisite]
CALENDLY_LIST_EVENTS - List events scoped by user, organization, or group [Required]
CALENDLY_GET_EVENT - Get detailed info for a specific event by UUID [Optional]
Key parameters:
user: Full Calendly API URI (e.g., https://api.calendly.com/users/{uuid}) - NOT "me"
organization: Full organization URI for org-scoped queries
status: "active" or "canceled"
min_start_time / max_start_time: UTC timestamps (e.g., 2024-01-01T00:00:00.000000Z)
invitee_email: Filter events by invitee email (filter only, not a scope)
sort: "start_time:asc" or "start_time:desc"
count: Results per page (default 20)
page_token: Pagination token from previous response
Pitfalls:
- Exactly ONE of
user, organization, or group must be provided - omitting or combining scopes fails
- The
user parameter requires the full API URI, not "me" - use CALENDLY_GET_CURRENT_USER first
invitee_email is a filter, not a scope; you still need one of user/organization/group
- Pagination uses
count + page_token; loop until page_token is absent for complete results
- Admin rights may be needed for organization or group scope queries
2. Manage Event Invitees
When to use: User wants to see who is booked for events or get invitee details
Tool sequence:
CALENDLY_LIST_EVENTS - Find the target event(s) [Prerequisite]
CALENDLY_LIST_EVENT_INVITEES - List all invitees for a specific event [Required]
CALENDLY_GET_EVENT_INVITEE - Get detailed info for a single invitee [Optional]
Key parameters:
uuid: Event UUID (for LIST_EVENT_INVITEES)
event_uuid + invitee_uuid: Both required for GET_EVENT_INVITEE
email: Filter invitees by email address
status: "active" or "canceled"
sort: "created_at:asc" or "created_at:desc"
count: Results per page (default 20)
Pitfalls:
- The
uuid parameter for CALENDLY_LIST_EVENT_INVITEES is the event UUID, not the invitee UUID
- Paginate using
page_token until absent for complete invitee lists
- Canceled invitees are excluded by default; use
status: "canceled" to see them
3. Create Scheduling Links and Check Availability
When to use: User wants to generate a booking link or check available time slots
Tool sequence:
CALENDLY_GET_CURRENT_USER - Get user URI [Prerequisite]
CALENDLY_LIST_USER_S_EVENT_TYPES - List available event types [Required]
CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES - Check available slots for an event type [Optional]
CALENDLY_CREATE_SCHEDULING_LINK - Generate a single-use scheduling link [Required]
CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES - View user's availability schedules [Optional]
Key parameters:
owner: Event type URI (e.g., https://api.calendly.com/event_types/{uuid})
owner_type: "EventType" (default)
max_event_count: Must be exactly 1 for single-use links
start_time / end_time: UTC timestamps for availability queries (max 7-day range)
active: Boolean to filter active/inactive event types
user: User URI for event type listing
Pitfalls:
CALENDLY_CREATE_SCHEDULING_LINK can return 403 if token lacks rights or owner URI is invalid
CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES requires UTC timestamps and max 7-day range; split longer searches
- Available times results are NOT paginated - all results returned in one response
- Event type URIs must be full API URIs (e.g.,
https://api.calendly.com/event_types/...)
4. Cancel Events
When to use: User wants to cancel a scheduled Calendly event
Tool sequence:
CALENDLY_LIST_EVENTS - Find the event to cancel [Prerequisite]
CALENDLY_GET_EVENT - Confirm event details before cancellation [Prerequisite]
CALENDLY_LIST_EVENT_INVITEES - Check who will be affected [Optional]
CALENDLY_CANCEL_EVENT - Cancel the event [Required]
Key parameters:
uuid: Event UUID to cancel
reason: Optional cancellation reason (may be included in notification to invitees)
Pitfalls:
- Cancellation is IRREVERSIBLE - always confirm with the user before calling
- Cancellation may trigger notifications to invitees
- Only active events can be canceled; already-canceled events return errors
- Get explicit user confirmation before executing
CALENDLY_CANCEL_EVENT
5. Manage Organization and Invitations
When to use: User wants to invite members, manage organization, or handle org invitations
Tool sequence:
CALENDLY_GET_CURRENT_USER - Get user and organization context [Prerequisite]
CALENDLY_GET_ORGANIZATION - Get organization details [Optional]
CALENDLY_LIST_ORGANIZATION_INVITATIONS - Check existing invitations [Optional]
CALENDLY_CREATE_ORGANIZATION_INVITATION - Send an org invitation [Required]
CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION - Revoke a pending invitation [Optional]
CALENDLY_REMOVE_USER_FROM_ORGANIZATION - Remove a member [Optional]
Key parameters:
uuid: Organization UUID
email: Email address of user to invite
status: Filter invitations by "pending", "accepted", or "declined"
Pitfalls:
- Only org owners/admins can manage invitations and removals; others get authorization errors
- Duplicate active invitations for the same email are rejected - check existing invitations first
- Organization owners cannot be removed via
CALENDLY_REMOVE_USER_FROM_ORGANIZATION
- Invitation statuses include pending, accepted, declined, and revoked - handle each appropriately
Common Patterns
ID Resolution
Calendly uses full API URIs as identifiers, not simple IDs:
- Current user URI:
CALENDLY_GET_CURRENT_USER returns resource.uri (e.g., https://api.calendly.com/users/{uuid})
- Organization URI: Found in current user response at
resource.current_organization
- Event UUID: Extract from event URI or list responses
- Event type URI: From
CALENDLY_LIST_USER_S_EVENT_TYPES response
Important: Never use "me" as a user parameter in list/filter endpoints. Always resolve to the full URI first.
Pagination
Most Calendly list endpoints use token-based pagination:
- Set
count for page size (default 20)
- Follow
page_token from pagination.next_page_token until absent
- Sort with
field:direction format (e.g., start_time:asc, created_at:desc)
Time Handling
- All timestamps must be in UTC format:
yyyy-MM-ddTHH:mm:ss.ffffffZ
- Use
min_start_time / max_start_time for date range filtering on events
- Available times queries have a maximum 7-day range; split longer searches into multiple calls
Known Pitfalls
URI Formats
- All entity references use full Calendly API URIs (e.g.,
https://api.calendly.com/users/{uuid})
- Never pass bare UUIDs where URIs are expected, and never pass
"me" to list endpoints
- Extract UUIDs from URIs when tools expect UUID parameters (e.g.,
CALENDLY_GET_EVENT)
Scope Requirements
CALENDLY_LIST_EVENTS requires exactly one scope (user, organization, or group) - no more, no less
- Organization/group scoped queries may require admin privileges
- Token scope determines which operations are available; 403 errors indicate insufficient permissions
Data Relationships
- Events have invitees (attendees who booked)
- Event types define scheduling pages (duration, availability rules)
- Organizations contain users and groups
- Scheduling links are tied to event types, not directly to events
Rate Limits
- Calendly API has rate limits; avoid tight loops over large datasets
- Paginate responsibly and add delays for batch operations
Quick Reference
| Task |
Tool Slug |
Key Params |
| Get current user |
CALENDLY_GET_CURRENT_USER |
(none) |
| Get user by UUID |
CALENDLY_GET_USER |
uuid |
| List events |
CALENDLY_LIST_EVENTS |
user, status, min_start_time |
| Get event details |
CALENDLY_GET_EVENT |
uuid |
| Cancel event |
CALENDLY_CANCEL_EVENT |
uuid, reason |
| List invitees |
CALENDLY_LIST_EVENT_INVITEES |
uuid, status, email |
| Get invitee |
CALENDLY_GET_EVENT_INVITEE |
event_uuid, invitee_uuid |
| List event types |
CALENDLY_LIST_USER_S_EVENT_TYPES |
user, active |
| Get event type |
CALENDLY_GET_EVENT_TYPE |
uuid |
| Check availability |
CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES |
event type URI, start_time, end_time |
| Create scheduling link |
CALENDLY_CREATE_SCHEDULING_LINK |
owner, max_event_count |
| List availability schedules |
CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES |
user URI |
| Get organization |
CALENDLY_GET_ORGANIZATION |
uuid |
| Invite to org |
CALENDLY_CREATE_ORGANIZATION_INVITATION |
uuid, email |
| List org invitations |
CALENDLY_LIST_ORGANIZATION_INVITATIONS |
uuid, status |
| Revoke org invitation |
CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION |
org UUID, invitation UUID |
| Remove from org |
CALENDLY_REMOVE_USER_FROM_ORGANIZATION |
membership UUID |
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.
1---2name: calendly-automation3description: ALWAYS use this when the request matches Calendly Automation: Automate Calendly scheduling, event management, invitee tracking, availability checks, and organization administration via Rube MCP (Composio).4---56# Calendly Automation via Rube MCP78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718Automate Calendly operations including event listing, invitee management, scheduling link creation, availability queries, and organization administration through Composio's Calendly toolkit.1920## Prerequisites2122- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)23- Active Calendly connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `calendly`24- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas25- Many operations require the user's Calendly URI, obtained via `CALENDLY_GET_CURRENT_USER`2627## Setup2829**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.30311. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds322. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `calendly`333. If connection is not ACTIVE, follow the returned auth link to complete Calendly OAuth344. Confirm connection status shows ACTIVE before running any workflows3536## Core Workflows3738### 1. List and View Scheduled Events3940**When to use**: User wants to see their upcoming, past, or filtered Calendly events4142**Tool sequence**:431. `CALENDLY_GET_CURRENT_USER` - Get authenticated user URI and organization URI [Prerequisite]442. `CALENDLY_LIST_EVENTS` - List events scoped by user, organization, or group [Required]453. `CALENDLY_GET_EVENT` - Get detailed info for a specific event by UUID [Optional]4647**Key parameters**:48- `user`: Full Calendly API URI (e.g., `https://api.calendly.com/users/{uuid}`) - NOT `"me"`49- `organization`: Full organization URI for org-scoped queries50- `status`: `"active"` or `"canceled"`51- `min_start_time` / `max_start_time`: UTC timestamps (e.g., `2024-01-01T00:00:00.000000Z`)52- `invitee_email`: Filter events by invitee email (filter only, not a scope)53- `sort`: `"start_time:asc"` or `"start_time:desc"`54- `count`: Results per page (default 20)55- `page_token`: Pagination token from previous response5657**Pitfalls**:58- Exactly ONE of `user`, `organization`, or `group` must be provided - omitting or combining scopes fails59- The `user` parameter requires the full API URI, not `"me"` - use `CALENDLY_GET_CURRENT_USER` first60- `invitee_email` is a filter, not a scope; you still need one of user/organization/group61- Pagination uses `count` + `page_token`; loop until `page_token` is absent for complete results62- Admin rights may be needed for organization or group scope queries6364### 2. Manage Event Invitees6566**When to use**: User wants to see who is booked for events or get invitee details6768**Tool sequence**:691. `CALENDLY_LIST_EVENTS` - Find the target event(s) [Prerequisite]702. `CALENDLY_LIST_EVENT_INVITEES` - List all invitees for a specific event [Required]713. `CALENDLY_GET_EVENT_INVITEE` - Get detailed info for a single invitee [Optional]7273**Key parameters**:74- `uuid`: Event UUID (for `LIST_EVENT_INVITEES`)75- `event_uuid` + `invitee_uuid`: Both required for `GET_EVENT_INVITEE`76- `email`: Filter invitees by email address77- `status`: `"active"` or `"canceled"`78- `sort`: `"created_at:asc"` or `"created_at:desc"`79- `count`: Results per page (default 20)8081**Pitfalls**:82- The `uuid` parameter for `CALENDLY_LIST_EVENT_INVITEES` is the event UUID, not the invitee UUID83- Paginate using `page_token` until absent for complete invitee lists84- Canceled invitees are excluded by default; use `status: "canceled"` to see them8586### 3. Create Scheduling Links and Check Availability8788**When to use**: User wants to generate a booking link or check available time slots8990**Tool sequence**:911. `CALENDLY_GET_CURRENT_USER` - Get user URI [Prerequisite]922. `CALENDLY_LIST_USER_S_EVENT_TYPES` - List available event types [Required]933. `CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES` - Check available slots for an event type [Optional]944. `CALENDLY_CREATE_SCHEDULING_LINK` - Generate a single-use scheduling link [Required]955. `CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES` - View user's availability schedules [Optional]9697**Key parameters**:98- `owner`: Event type URI (e.g., `https://api.calendly.com/event_types/{uuid}`)99- `owner_type`: `"EventType"` (default)100- `max_event_count`: Must be exactly `1` for single-use links101- `start_time` / `end_time`: UTC timestamps for availability queries (max 7-day range)102- `active`: Boolean to filter active/inactive event types103- `user`: User URI for event type listing104105**Pitfalls**:106- `CALENDLY_CREATE_SCHEDULING_LINK` can return 403 if token lacks rights or owner URI is invalid107- `CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES` requires UTC timestamps and max 7-day range; split longer searches108- Available times results are NOT paginated - all results returned in one response109- Event type URIs must be full API URIs (e.g., `https://api.calendly.com/event_types/...`)110111### 4. Cancel Events112113**When to use**: User wants to cancel a scheduled Calendly event114115**Tool sequence**:1161. `CALENDLY_LIST_EVENTS` - Find the event to cancel [Prerequisite]1172. `CALENDLY_GET_EVENT` - Confirm event details before cancellation [Prerequisite]1183. `CALENDLY_LIST_EVENT_INVITEES` - Check who will be affected [Optional]1194. `CALENDLY_CANCEL_EVENT` - Cancel the event [Required]120121**Key parameters**:122- `uuid`: Event UUID to cancel123- `reason`: Optional cancellation reason (may be included in notification to invitees)124125**Pitfalls**:126- Cancellation is IRREVERSIBLE - always confirm with the user before calling127- Cancellation may trigger notifications to invitees128- Only active events can be canceled; already-canceled events return errors129- Get explicit user confirmation before executing `CALENDLY_CANCEL_EVENT`130131### 5. Manage Organization and Invitations132133**When to use**: User wants to invite members, manage organization, or handle org invitations134135**Tool sequence**:1361. `CALENDLY_GET_CURRENT_USER` - Get user and organization context [Prerequisite]1372. `CALENDLY_GET_ORGANIZATION` - Get organization details [Optional]1383. `CALENDLY_LIST_ORGANIZATION_INVITATIONS` - Check existing invitations [Optional]1394. `CALENDLY_CREATE_ORGANIZATION_INVITATION` - Send an org invitation [Required]1405. `CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION` - Revoke a pending invitation [Optional]1416. `CALENDLY_REMOVE_USER_FROM_ORGANIZATION` - Remove a member [Optional]142143**Key parameters**:144- `uuid`: Organization UUID145- `email`: Email address of user to invite146- `status`: Filter invitations by `"pending"`, `"accepted"`, or `"declined"`147148**Pitfalls**:149- Only org owners/admins can manage invitations and removals; others get authorization errors150- Duplicate active invitations for the same email are rejected - check existing invitations first151- Organization owners cannot be removed via `CALENDLY_REMOVE_USER_FROM_ORGANIZATION`152- Invitation statuses include pending, accepted, declined, and revoked - handle each appropriately153154## Common Patterns155156### ID Resolution157Calendly uses full API URIs as identifiers, not simple IDs:158- **Current user URI**: `CALENDLY_GET_CURRENT_USER` returns `resource.uri` (e.g., `https://api.calendly.com/users/{uuid}`)159- **Organization URI**: Found in current user response at `resource.current_organization`160- **Event UUID**: Extract from event URI or list responses161- **Event type URI**: From `CALENDLY_LIST_USER_S_EVENT_TYPES` response162163Important: Never use `"me"` as a user parameter in list/filter endpoints. Always resolve to the full URI first.164165### Pagination166Most Calendly list endpoints use token-based pagination:167- Set `count` for page size (default 20)168- Follow `page_token` from `pagination.next_page_token` until absent169- Sort with `field:direction` format (e.g., `start_time:asc`, `created_at:desc`)170171### Time Handling172- All timestamps must be in UTC format: `yyyy-MM-ddTHH:mm:ss.ffffffZ`173- Use `min_start_time` / `max_start_time` for date range filtering on events174- Available times queries have a maximum 7-day range; split longer searches into multiple calls175176## Known Pitfalls177178### URI Formats179- All entity references use full Calendly API URIs (e.g., `https://api.calendly.com/users/{uuid}`)180- Never pass bare UUIDs where URIs are expected, and never pass `"me"` to list endpoints181- Extract UUIDs from URIs when tools expect UUID parameters (e.g., `CALENDLY_GET_EVENT`)182183### Scope Requirements184- `CALENDLY_LIST_EVENTS` requires exactly one scope (user, organization, or group) - no more, no less185- Organization/group scoped queries may require admin privileges186- Token scope determines which operations are available; 403 errors indicate insufficient permissions187188### Data Relationships189- Events have invitees (attendees who booked)190- Event types define scheduling pages (duration, availability rules)191- Organizations contain users and groups192- Scheduling links are tied to event types, not directly to events193194### Rate Limits195- Calendly API has rate limits; avoid tight loops over large datasets196- Paginate responsibly and add delays for batch operations197198## Quick Reference199200| Task | Tool Slug | Key Params |201|------|-----------|------------|202| Get current user | `CALENDLY_GET_CURRENT_USER` | (none) |203| Get user by UUID | `CALENDLY_GET_USER` | `uuid` |204| List events | `CALENDLY_LIST_EVENTS` | `user`, `status`, `min_start_time` |205| Get event details | `CALENDLY_GET_EVENT` | `uuid` |206| Cancel event | `CALENDLY_CANCEL_EVENT` | `uuid`, `reason` |207| List invitees | `CALENDLY_LIST_EVENT_INVITEES` | `uuid`, `status`, `email` |208| Get invitee | `CALENDLY_GET_EVENT_INVITEE` | `event_uuid`, `invitee_uuid` |209| List event types | `CALENDLY_LIST_USER_S_EVENT_TYPES` | `user`, `active` |210| Get event type | `CALENDLY_GET_EVENT_TYPE` | `uuid` |211| Check availability | `CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES` | event type URI, `start_time`, `end_time` |212| Create scheduling link | `CALENDLY_CREATE_SCHEDULING_LINK` | `owner`, `max_event_count` |213| List availability schedules | `CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES` | user URI |214| Get organization | `CALENDLY_GET_ORGANIZATION` | `uuid` |215| Invite to org | `CALENDLY_CREATE_ORGANIZATION_INVITATION` | `uuid`, `email` |216| List org invitations | `CALENDLY_LIST_ORGANIZATION_INVITATIONS` | `uuid`, `status` |217| Revoke org invitation | `CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION` | org UUID, invitation UUID |218| Remove from org | `CALENDLY_REMOVE_USER_FROM_ORGANIZATION` | membership UUID |219220## When to Use221This skill is applicable to execute the workflow or actions described in the overview.222223## Limitations224- Use this skill only when the task clearly matches the scope described above.225- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.226- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.