Calendly MCP Server

Official

Real availability, real bookings, and single-use scheduling links — driven from the conversation.

Remote serverstreamable-http

What is the Calendly MCP server?

If you already use Calendly, the calendly mcp server is the piece that lets your assistant work with it directly. Calendly's official remote MCP server lets assistants check availability, book and cancel meetings, generate scheduling links, and manage event types and schedules.

What the server does

Calendly's official remote MCP server lets assistants check availability, book and cancel meetings, generate scheduling links, and manage event types and schedules.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • event_types-list_event_type_available_times — Returns bookable slots for an event type within a date range of at most seven days
  • event_types-list_event_types — Lists the event types belonging to a user or organization
  • event_types-create_event_type — Creates a new event type
  • event_types-update_event_type — Modifies an existing event type's configuration
  • event_types-update_event_type_availability_schedule — Changes which availability schedule an event type uses
  • meetings-list_events — Retrieves scheduled events filtered by user, organization, invitee, status, and time range, with pagination and sorting
  • meetings-get_event — Fetches the details of a single scheduled event
  • meetings-cancel_event — Cancels a scheduled event
  • meetings-create_invitee — Books a new appointment on an event type. Requires a paid Calendly plan
  • meetings-list_event_invitees — Lists the invitees attached to a scheduled event
  • meetings-create_invitee_no_show — Marks an invitee as a no-show; companion tools read and clear the record
  • scheduling_links-create_single_use_scheduling_link — Generates a disposable booking link that can be handed to one specific person

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

A Calendly account (free tier can connect). Programmatic booking requires a paid plan and routing-form tools require Teams or above. Any MCP client supporting remote Streamable HTTP with OAuth.

Where it fits

Plenty of planning and project tracking servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Calendly's toolset — event_types-list_event_type_available_times, event_types-list_event_types, event_types-create_event_type and 15 more — is a fair guide to whether it matches your workflow. It is maintained by Calendly rather than a third party, which usually means auth handling and breaking changes are dealt with faster.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 18 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Calendly.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

What you can do with it

Recruiting and sales scheduling

Draft the outreach and book the slot in one pass — find open times, create a single-use link for the candidate or prospect, and confirm what landed.

Calendar hygiene reviews

Ask what was booked this week, who no-showed, and which event types point at the wrong availability schedule, then fix the misconfigured ones in place.

Agent-driven rescheduling

Let an assistant find a replacement slot inside the seven-day availability window, cancel the old event, and issue a fresh link.

Team onboarding and access audits

Read organization memberships, send invitations to new hires, and revoke pending invites that are no longer needed.

Available tools

ToolWhat it does
event_types-list_event_type_available_timesReturns bookable slots for an event type within a date range of at most seven days.
event_types-list_event_typesLists the event types belonging to a user or organization.
event_types-create_event_typeCreates a new event type.
event_types-update_event_typeModifies an existing event type's configuration.
event_types-update_event_type_availability_scheduleChanges which availability schedule an event type uses.
meetings-list_eventsRetrieves scheduled events filtered by user, organization, invitee, status, and time range, with pagination and sorting.
meetings-get_eventFetches the details of a single scheduled event.
meetings-cancel_eventCancels a scheduled event.
meetings-create_inviteeBooks a new appointment on an event type. Requires a paid Calendly plan.
meetings-list_event_inviteesLists the invitees attached to a scheduled event.
meetings-create_invitee_no_showMarks an invitee as a no-show; companion tools read and clear the record.
scheduling_links-create_single_use_scheduling_linkGenerates a disposable booking link that can be handed to one specific person.
shares-create_shareBuilds a customised scheduling link for sharing.
availability-list_user_busy_timesReturns the periods a user is already occupied.
availability-list_user_availability_schedulesLists a user's availability schedules; a companion tool fetches one by identifier.
routing_forms-list_routing_formsLists routing forms and, with companion tools, their submissions. Teams plan and above.
users-get_current_userReturns the authenticated user's profile.
organizations-list_organization_membershipsLists organization members; companion tools read, send, and revoke membership invitations.

How to install the Calendly MCP server

claude mcp add calendly --transport http https://mcp.calendly.com

Configuration

A Calendly account (free tier can connect). Programmatic booking requires a paid plan and routing-form tools require Teams or above. Any MCP client supporting remote Streamable HTTP with OAuth.

Example prompts to try

  • Find three 45-minute slots on my intro-call event type in the next five business days and give me a single-use link for the first one.
  • What meetings do I have booked this week, and which invitees were marked as no-shows last month?
  • Cancel my Thursday afternoon event and generate a new booking link for the same invitee.
  • Which of my event types are still pointing at the old working-hours schedule?

Frequently asked questions

You can connect on any Calendly plan, including free, and Calendly is available across Claude and ChatGPT plans. But individual tools are tier-gated: booking an appointment through `meetings-create_invitee` requires a paid plan, and the routing-form tools need Teams or above. Reading availability, listing events, and generating scheduling links are broadly available. Check your tier before building an agent that assumes programmatic booking works.