booking_chest
Allows connecting Apple Calendar integration.
Provides tools to manage scheduling, event types, bookings, calendars, webhooks, and teams through the Cal.com open-source scheduling platform.
Allows connecting Google Calendar to check busy times, set destination calendar, and manage calendar integration.
Required for team creation; integration with Stripe for billing.
Allows creating webhooks to notify Zapier on booking events.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@booking_chestCreate a 30-minute consultation event type"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
booking_chest — Cal.com MCP Server
A Model Context Protocol server for Cal.com open-source scheduling. Exposes ~70 MCP tools across 10 resource modules — create schedules, manage event types, book meetings, integrate calendars, configure webhooks, and manage teams — all controllable directly from Claude or any MCP-compatible client.
Features
~70 tools covering the Cal.com API v2
Clean two-layer architecture: pure
calcom_client/package + thin MCP wrapperStatic Bearer token auth (no refresh needed)
Typed exception hierarchy (
APIError,NotFoundError,ValidationError,AuthenticationError)API quirks baked in (correct parameter names, required fields, response envelope unwrapping)
Related MCP server: Calendly MCP Server
Resource Modules (10)
Module | Tools | Description |
| 2 | Profile get/update |
| 1 | List all 7,072 city/timezone entries |
| 1 | Rotate API key (warning: invalidates immediately) |
| 5 | Availability schedule CRUD |
| 9 | Event type CRUD + per-type webhooks + private links (Enterprise) |
| 3 | Available slots, reserve, delete reservation |
| 6 | List, get, create, cancel, reschedule, mark no-show |
| 9 | Connect, busy times, destination, selected, ICS feeds |
| 5 | User-level webhook CRUD (21 trigger types) |
| 19 | Team CRUD + memberships + event types + event-type webhooks + invite |
Installation
git clone https://github.com/dsddet/booking_chest
cd booking_chest
pip install -e ".[mcp]"Or with uv (recommended):
uv pip install -e ".[mcp]"Environment Variables
Variable | Required | Description |
| Yes | Cal.com API key (starts with |
| No | Cal.com instance URL (default: |
Create a .env file:
CALCOM_API_KEY=cal_your_api_key_here
CALCOM_BASE_URL=https://api.cal.comFor self-hosted Cal.com instances, set CALCOM_BASE_URL to your instance URL (e.g., http://192.168.0.214).
Getting an API Key
Log into Cal.com Settings → Developer → API Keys
Click "Generate API Key"
Copy the key (starts with
cal_) — it cannot be retrieved later
Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"booking_chest": {
"command": "uv",
"args": [
"--directory", "/path/to/booking_chest",
"run", "--extra", "mcp", "mcp_server.py"
],
"env": {
"CALCOM_API_KEY": "cal_your_api_key_here",
"CALCOM_BASE_URL": "https://api.cal.com"
}
}
}
}Replace /path/to/booking_chest with the absolute path to your cloned directory.
Usage Examples
Once connected, you can ask Claude:
"Create a 30-minute consultation event type"
"What slots are available this week for event type 1?"
"Book a meeting with john@example.com on March 5th at 2pm Eastern"
"List all my upcoming bookings"
"Cancel booking 42 — attendee has a conflict"
"Connect my Google Calendar and set it as the destination"
"Create a webhook to notify Zapier when bookings are created or cancelled"
"List all team members and their roles"
Architecture
calcom_client/ # Pure API client (no MCP dependency)
├── http.py # httpx + Bearer token auth + response envelope unwrap
├── exceptions.py # APIError, NotFoundError, ValidationError, AuthenticationError
├── me.py # Profile get/update
├── timezones.py # List all timezones
├── api_keys.py # API key rotation
├── schedules.py # Availability schedule CRUD
├── event_types.py # Event type CRUD + webhooks + private links
├── slots.py # Available slots, reserve, delete
├── bookings.py # Booking CRUD (cancel, reschedule, no-show)
├── calendars.py # Calendar integrations (Google, Office 365, Apple)
├── webhooks.py # User-level webhook CRUD
├── teams.py # Team CRUD + memberships + event types + invite
└── __init__.py # CalcomClient facade composing all modules
mcp_server.py # ~70 @mcp.tool() functionsCal.com API Quirks (baked into client code)
API version: Use
cal-api-version: 2024-06-14(broadest support —2024-08-13misses some endpoints)Response envelope: All responses wrapped in
{"status": "success", "data": ...}— unwrapped automaticallySlots params: Use
start/end(NOTstartTime/endTime— those cause 400 errors)Webhook triggers: Use
triggersfield (NOTeventTriggers— old doc error)Calendar connect: Use
google,office365,apple(NOTgoogle-calendar,office365calendar)calendarsToLoadis REQUIRED for busy-times endpoint (400 error without it)isDefaultis REQUIRED when creating schedules (400 error without it)slotIdis REQUIRED when reserving slotsAPI key refresh: Old key invalidated immediately — update env before next request
Team creation needs Stripe — use existing teams or configure Stripe billing
metadata PATCH: Returns null in response but IS saved (verify via team memberships)
No team-level webhooks — webhooks are always scoped to specific event types
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dsddet/booking_chest'
If you have feedback or need assistance with the MCP directory API, please join our Discord server