@calendar-mcp/server
Enables MCP clients to manage Google Calendar events, including CRUD operations, recurring events, free/busy queries, and push notifications via webhooks.
README
@calendar-mcp/server
A production-grade Google Calendar MCP (Model Context Protocol) server. Exposes Google Calendar as a set of structured tools that any MCP client can use to list, create, update, delete, search, and subscribe to calendar events.
Overview
This server translates Google Calendar API operations into MCP tool calls. It supports full event CRUD, recurring events, free/busy queries, calendar management, and real-time push notifications via Google Calendar webhooks.
Key features
- 15 MCP tools covering complete calendar operations
- Multiple transports: stdio for Claude Desktop, HTTP/SSE for remote clients, or both simultaneously
- OAuth2 authentication with automatic token refresh
- AES-256-GCM encrypted token storage with automatic key generation
- Webhook support for push notifications on calendar changes
- DNS rebinding protection and channel token validation on HTTP transport
- TypeScript with strict type safety across all tools
Prerequisites
- Node.js 20+ (required by the engine constraint)
- Google OAuth2 credentials:
- Go to Google Cloud Console
- Create a project (or select an existing one)
- Enable the Google Calendar API
- Go to Credentials > Create Credentials > OAuth 2.0 Client ID
- Set the application type to Web application
- Add
http://localhost:3500/oauth2callbackas an authorized redirect URI (or use your configuredOAUTH_PORT) - Copy the Client ID and Client Secret
Installation
Global install
npm install -g @calendar-mcp/server
npx (no install)
npx @calendar-mcp/server --transport stdio
Configuration
All configuration is done via environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
GOOGLE_CLIENT_ID |
Yes | — | Google OAuth2 client ID |
GOOGLE_CLIENT_SECRET |
Yes | — | Google OAuth2 client secret |
HTTP_PORT |
No | 3000 |
HTTP server port for SSE and webhook endpoints |
OAUTH_PORT |
No | 3500 |
Port for the OAuth2 callback server |
CALENDAR_MCP_ENCRYPTION_KEY |
No | auto-generated | 64-character hex string for AES-256-GCM token encryption |
MCP_ALLOWED_HOSTS |
No | — | Comma-separated allowed hosts for HTTP transport (DNS rebinding protection). When unset, all hosts are allowed |
Generating an encryption key
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
Store the output in CALENDAR_MCP_ENCRYPTION_KEY. If omitted, a key is generated automatically and stored at ~/.config/calendar-mcp/encryption-key.txt.
Authentication
On first run, the server opens a browser window for Google OAuth2 authorization.
- Start the server with your credentials
- Visit
http://localhost:3500(or your configuredOAUTH_PORT) - Sign in with your Google account and grant calendar access
- Tokens are saved locally and refreshed automatically
Tokens are encrypted at rest using AES-256-GCM. The token file is stored at ~/.config/calendar-mcp/tokens.json with 0o600 file permissions.
Available Tools
| Tool | Description | Annotations |
|---|---|---|
list_events |
List events with optional filtering by time range and max results | Read-only |
get_event |
Get single event details | Read-only |
create_event |
Create a new event (supports all-day and timed) | — |
update_event |
Partial update of an existing event | — |
delete_event |
Delete an event | Destructive |
list_event_instances |
Expand a recurring event into individual instances | Read-only |
create_recurring_event |
Create a recurring event with RRULE | — |
query_free_busy |
Query availability across up to 50 calendars | Read-only |
list_calendars |
List all calendars in the user account | Read-only |
get_calendar |
Get single calendar details | Read-only |
subscribe_calendar |
Subscribe to push notifications (7-day expiry) | — |
unsubscribe_calendar |
Unsubscribe from push notifications | Destructive |
list_subscriptions |
List active webhook subscriptions | Read-only |
search_events |
Full-text search events in a calendar | Read-only |
get_current_time |
Get current server time with timezone context | Read-only |
Transport Modes
The server supports three transport modes via the --transport flag.
Stdio (for Claude Desktop, Cursor, and other MCP clients)
calendar-mcp --transport stdio
Add to your MCP client configuration (e.g., Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"calendar": {
"command": "calendar-mcp",
"args": ["--transport", "stdio"],
"env": {
"GOOGLE_CLIENT_ID": "your-client-id",
"GOOGLE_CLIENT_SECRET": "your-client-secret"
}
}
}
}
HTTP/SSE (for remote clients and webhook reception)
GOOGLE_CLIENT_ID=xxx GOOGLE_CLIENT_SECRET=yyy calendar-mcp --transport http
Both (default)
calendar-mcp --transport both
CLI options
calendar-mcp --help
Output:
Google Calendar MCP Server
Usage: calendar-mcp [options]
Options:
--transport <mode> Transport mode: stdio, http, or both (default: both)
--help Show this help message
--version Show version number
Environment Variables:
GOOGLE_CLIENT_ID Google OAuth2 client ID (required)
GOOGLE_CLIENT_SECRET Google OAuth2 client secret (required)
HTTP_PORT HTTP server port (default: 3000)
OAUTH_PORT OAuth callback port (default: 3500)
CALENDAR_MCP_ENCRYPTION_KEY Encryption key for token storage (optional)
HTTP Endpoints (HTTP mode)
| Endpoint | Method | Description |
|---|---|---|
/mcp |
GET |
SSE stream for MCP connection (default) |
/sse |
GET |
SSE stream for MCP connection (Odysseus AI compatible) |
/messages |
POST |
MCP message handler |
/webhooks/google-calendar |
POST |
Google Calendar push notifications |
/health |
GET |
Health check |
Docker Deployment
Build and run
docker build -t calendar-mcp .
docker run \
-e GOOGLE_CLIENT_ID=xxx \
-e GOOGLE_CLIENT_SECRET=yyy \
-p 3000:3000 \
-p 3500:3500 \
calendar-mcp
Docker Compose
# Set env vars in .env file or export them
export GOOGLE_CLIENT_ID=xxx
export GOOGLE_CLIENT_SECRET=yyy
# Ports are configurable via HTTP_PORT and OAUTH_PORT env vars
docker compose up -d
The compose file mounts ~/.config/calendar-mcp as a volume so tokens persist across container restarts.
Webhook Setup
Google Calendar push notifications let you receive real-time updates when events change.
- Ensure the server runs in HTTP or both mode
- Use the
subscribe_calendartool to register a webhook - Google sends a sync notification first, then change notifications to
/webhooks/google-calendar - Subscriptions expire after 7 days; re-subscribe before expiry
- Use
list_subscriptionsto see active channels andunsubscribe_calendarto remove them
Requirements for public webhooks:
The server must be reachable from the internet. Set the webhook address in your Google Cloud Console OAuth2 credentials to your public URL (e.g., https://your-domain.com/webhooks/google-calendar).
Security
- AES-256-GCM encrypted token storage with authenticated encryption
- Token store at
~/.config/calendar-mcp/tokens.jsonwith0o600permissions - OAuth2 refresh token rotation supported by the Google Auth Library
- DNS rebinding protection on HTTP transport (only
localhost,127.0.0.1,::1allowed as Host header) - X-Goog-Channel-Token validation for webhook requests
- No plaintext token logging anywhere in the application
Development
# Clone the repository
git clone https://github.com/your-org/calendar-mcp.git
cd calendar-mcp
# Install dependencies
npm install
# Run tests (20 test suites)
npm test
# Build the project
npm run build
# Run the dev server with hot reload
npm run dev
# Lint
npm run lint
License
ISC
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。