Calendly MCP Server
Exposes personal Calendly account as MCP tools, allowing users to manage events, view availability, and handle bookings through natural language.
README
Calendly MCP Server
A minimal MCP server that exposes your personal Calendly account to Claude (or any MCP client) as a set of tools, using a Personal Access Token.
Tools included
get_current_user— your profile infolist_event_types— your bookable event types (e.g. "30 Minute Meeting")list_scheduled_events— bookings on your calendarget_scheduled_event— full details of one bookinglist_event_invitees— who booked, and their answers to your questionscancel_scheduled_event— cancel a bookingget_event_type_available_times— open slots for an event typecreate_scheduling_link— generate a single-use booking link to share
1. Get a Calendly Personal Access Token
- Log into Calendly in your browser.
- Go to Account Settings → Integrations → API & Webhooks.
- Under Personal Access Tokens, click Generate New Token, name it (e.g. "MCP Server"), and copy the value — Calendly only shows it once.
2. Install dependencies
cd calendly-mcp
python3 -m venv venv
source venv/bin/activate # on Windows: venv\Scripts\activate
pip install -r requirements.txt
3. Configure your token
cp .env.example .env
Open .env and paste your token in place of the placeholder:
CALENDLY_API_TOKEN=your_actual_token_here
4. Test it locally with the MCP Inspector
mcp dev server.py
This opens a local web UI where you can call each tool directly and see the raw Calendly API responses — the fastest way to catch bugs before wiring it into a client.
5. Connect it to Claude Desktop
Local (stdio) MCP servers like this one run through Claude Desktop or Claude Code, not the claude.ai web/mobile app (which only connects to remote/hosted MCP servers via its connector picker).
Open Claude Desktop's config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add an entry (use the absolute path to your venv's python and server.py):
{
"mcpServers": {
"calendly": {
"command": "/absolute/path/to/calendly-mcp/venv/bin/python",
"args": ["/absolute/path/to/calendly-mcp/server.py"],
"env": {
"CALENDLY_API_TOKEN": "your_actual_token_here"
}
}
}
}
Restart Claude Desktop. You should see "calendly" listed under available tools (hammer icon), and you can ask things like "What meetings do I have this week?" or "Cancel my 3pm tomorrow."
6. Where to go from here
- Add a
reschedule_eventtool (Calendly doesn't have a direct reschedule endpoint — typically you cancel + share a new scheduling link). - Add organization-level tools if you're on a Teams/Enterprise plan
(
/organizations/{uuid}/memberships,/organizations/{uuid}/invitations). - Add webhook support (
/webhook_subscriptions) if you want push notifications instead of polling. - Wrap errors from
resp.raise_for_status()into friendlier messages — right now a bad UUID or expired token will surface as a raw HTTP error.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.