The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Google Calendar MCP listing page.
English | Русский
A1 Google Calendar MCP lets an AI app manage Google Calendar in plain language. Review your week, schedule a meeting with guests and a Google Meet link, reschedule or cancel it, find a slot when everyone is free, and block Out of Office or Focus Time.
It uses the Google Calendar API with your Google account. It distinguishes a whole recurring series from a single occurrence and makes the limits of the Calendar API explicit instead of implying that every calendar task is possible.
send_updates.calendar.events and calendar.readonly, without the broad calendar scope.Start with a read-only question:
What's on my calendar this week? Point out any overlapping meetings.
Connect the server · Explore use cases · Open technical documentation
You: What does my Thursday look like, and when are Anna and I both free?
Assistant: Shows Thursday's events and the free slots you share. Nothing changes.
You: Book a 45-minute design review with Anna in the first shared slot, with a Google Meet link.
Assistant: Shows the proposed time, guest list and Meet link, then asks for confirmation before creating the event.
You: Confirm.
Assistant: Creates the event. Nobody gets an email unless you ask it to send invitations.
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Calendar API enabled.
In the app: open Settings → MCP servers, select Add server, choose STDIO, enter the command npx -y @a1-x-tech/mcp-google-calendar@latest and environment variables GOOGLE_CALENDAR_CLIENT_ID, GOOGLE_CALENDAR_CLIENT_SECRET, GOOGLE_CALENDAR_REFRESH_TOKEN, then select Save and Restart.
From the command line:
The current official path is Settings → Extensions. For a custom desktop extension, open Advanced settings → Extension Developer → Install Extension…, select a .mcpb file and follow the prompts.
This repository currently publishes an npm stdio package and does not contain a .mcpb bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:
In those builds, save it to ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.
Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:
Run MCP: Open User Configuration and add:
Check it with MCP: List Servers.
calendar_id: "primary" is your main calendar; other calendars come from list_calendars, and writes need writer access.list_event_instances) exactly one.update_event changes only the fields you provide, but a nested object replaces its predecessor wholesale — a new attendees list replaces the whole guest list.send_updates says so — the Calendar API's default is silence.Out of Office and Focus Time blocks exist only on the primary calendar of a Google Workspace account; consumer Gmail and secondary calendars reject them. Creating an event does not check for conflicts — ask for a free/busy check first. All-day events end on an exclusive date: an event through Friday ends on Saturday's date.
| Operation | What happens | Confirmation boundary |
|---|---|---|
| Read calendars, events and free/busy | Reads schedule data; free/busy shows busy blocks without titles | No change |
| Create an event | Adds a timed, all-day or recurring event, optionally with guests and Google Meet | Changes a calendar |
| Create an Out of Office or Focus Time block | Adds a special event that can auto-decline invitations or silence Google Chat | Changes a calendar |
| Update an event | Reschedules or edits an event; a series id edits every occurrence | Changes a calendar |
| Move an event | Re-homes an event to another calendar | Changes two calendars |
| Delete an event | Cancels an event or an entire series; there is no undelete | Destructive |
| Raw API request | Can call API methods without a dedicated tool | Potentially destructive |
The AI client controls confirmation prompts. The server marks reads, writes and destructive tools so the client can distinguish an inspection from a live change.
Access to your own calendars requires OAuth 2.0; an API key is not enough.
Create or select a Google Cloud project and enable Google Calendar API.
Configure the OAuth consent screen and create a Desktop app OAuth client.
Authorize the Google account whose calendars you want to manage. The OAuth 2.0 Playground can obtain the refresh token when Use your own OAuth credentials is enabled.
Request both scopes:
The broad https://www.googleapis.com/auth/calendar scope is needed only for raw_request calls that manage calendars or sharing rules themselves.
Testing-mode OAuth refresh tokens can expire after seven days. Publish the OAuth app, or use an Internal app in a Workspace domain, when you need long-lived access. Treat the client secret and refresh token as passwords.
| Variable | Required | Description |
|---|---|---|
GOOGLE_CALENDAR_CLIENT_ID | Yes* | OAuth client ID. |
GOOGLE_CALENDAR_CLIENT_SECRET | Yes* | OAuth client secret. |
GOOGLE_CALENDAR_REFRESH_TOKEN | Yes* | OAuth refresh token. |
GOOGLE_CALENDAR_ACCESS_TOKEN | Yes* | Short-lived (~1 hour) alternative to the OAuth trio. |
GOOGLE_CALENDAR_API_BASE | No | Google API base URL override; default https://www.googleapis.com. |
GOOGLE_CALENDAR_TIMEOUT_MS | No | Per-request timeout; default 60000 ms. |
GOOGLE_CALENDAR_MAX_RETRIES | No | Temporary-error retries; default 3. |
* Provide either the OAuth trio or an access token. Without credentials the server still starts and completes the MCP handshake; the first tool call then names the exact variables to set.
ASKADS_TELEMETRY=0 to opt out.429, the server retries with backoff; reads also retry after network and 5xx errors, while writes are not replayed after an uncertain failure — a duplicated event could re-email every guest.list_events supports incremental checks via updated_min; if your AI app supports scheduled tasks, it can check your calendar periodically.Found a bug or need a scenario? Create an issue or write in Telegram.
You made it to the end!