google-calendar-mcp
Provides tools for interacting with Google Calendar, including listing and searching events, checking availability, creating and updating events, managing calendars and sharing, and responding to invitations.
Click on "Deploy 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., "@google-calendar-mcpWhat does my day look like tomorrow?"
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.
google-calendar-mcp
An MCP server for Google Calendar. One binary, stdio, per-user OAuth against your own Google account.
It answers when — calendars, the events on them, and who is free. What a meeting produces (a recording, a notes document, an attachment) belongs to servers built on the Meet, Docs and Drive APIs.
What makes this one different
Most calendar tooling an LLM reaches for gets three things subtly wrong. This server is built around not getting them wrong, and each is enforced by a test rather than by care:
An all-day event is a date, not a time. It never becomes an instant, so it cannot land on the wrong day for anyone west of UTC. Every timed event carries a real IANA zone, not just an offset, because an offset cannot expand a repeating event across a daylight-saving change.
Every read says what it read. The absolute window, the time zone, where that zone came from, and whether the list was truncated. A schedule that does not say which Thursday it is showing can be read as any Thursday.
Availability is not a list of events. An event you cannot see the details of still makes someone busy, and an event marked "free" does not. A calendar that could not be read is reported as unknown, never folded into "free".
The design, its evidence log and the phase plan are in
docs/architecture.md.
Related MCP server: Google-Calendar Universal MCP
Status
Complete and in use: reading, writing, recurrence, availability,
calendars, sharing, the resources and the Claude Desktop bundle. The
tools are listed below, and the phase plan and what is still owed are in
docs/architecture.md §16.
Install
go install github.com/mmedum/google-calendar-mcp/cmd/google-calendar-mcp@latestOr download an archive from the releases page.
Set up
You need your own Google Cloud project and OAuth client. Nothing deployer-specific is baked into this repository.
Create a project and enable the Google Calendar API.
Configure the OAuth consent screen and add the scopes
docs/gcp-setup.mdlists. That file is generated from the code, so it cannot fall behind the tool surface.Create an OAuth client of type Desktop app and download the JSON.
Sign in:
google-calendar-mcp login --client-secret ~/path/to/client_secret.json
google-calendar-mcp doctordoctor checks the client JSON, the stored token, the granted scopes and
whether the API answers, and names what is missing.
Signing in over SSH
The OAuth callback reaches the loopback interface of the machine running
login, while your browser is on your own machine. Forward the port
first. Use --no-browser: it prints the authorization URL and the exact
ssh -L line to run, with the port it actually picked.
Configure your MCP client
{
"mcpServers": {
"google-calendar": {
"command": "google-calendar-mcp",
"env": {
"GCAL_CLIENT_SECRET": "/path/to/client_secret.json"
}
}
}
}Every setting is in docs/configuration.md.
Tools
Tool | What it does |
| Every calendar this account can see, with ids, time zones and your access level. Start here. |
| One calendar in full, including who it is shared with. |
| The events on one or more calendars in a window. |
| Free-text search across a window. |
| One event, with its guests and their responses. |
| The occurrences of one repeating event, with the dates that were moved or removed. |
| What changed since you last looked, including deletions — which a list cannot report, because a deleted event simply stops matching. Hands back a sync token to pass in next time. |
| When people are busy and when they are free, from Google's free/busy service rather than from a list of events. Takes an optional working-hours mask. |
| The account's time zone, week start and colour palette. |
| Create an event, one-off or repeating, with a Google Meet link if you ask for one. |
| Change an event. Only the fields you pass are touched. |
| Cancel an event, or one occurrence of a repeating one. |
| Move an event to another calendar, which changes who organises it. |
| Answer an invitation: accepted, declined or tentative. |
| Create a calendar of your own. |
| Rename or re-zone a calendar, set your own colour and name for it, or add and remove it from your list. |
| Who can see a calendar, and what each of them can see. |
| Give somebody access, or change the access they have. |
| Take somebody's access away. |
| Delete a calendar and every event on it. Gated. |
| Delete every event on your primary calendar. Gated. |
GCAL_READONLY=true registers the first eight and requests only read
scopes, so the API itself refuses a write.
manage_calendar covers what the API splits across two resources and
people do not: the calendar — its title, description, location and
time zone — is what everybody it is shared with sees, while your
subscription to it — the colour, the name you give it, whether it is
hidden, what you are emailed about — is yours alone. Unsubscribing
removes it from your list; it deletes nothing and nobody else notices.
Three rules run through every write, and each exists because guessing is what the surveyed servers do:
notifyis required whenever the write can reach another person, and there is no default in either direction.noneis refused outright when a guest is outside your organisation — such a guest may have no Google Calendar for the event to appear in, so email is the only way they can learn of it.scopeis required when the event repeats:instance,seriesorthis_and_following. "Move the standup to 10:30" is three different operations and the API makes them look like one.Every write is a patch under
If-Match, so it is refused as[stale]rather than overwriting somebody who changed it first. Adding a guest reads the list and adds to it; it never replaces it.
dry_run: true on any of them reports what would change and how many
guests would be emailed, without writing.
Above 200 guests Google stops propagating individual responses, so every result about such an event says that the RSVPs it lists are incomplete.
Resources
For clients that attach context rather than call tools, the same content is published as three resources:
URI | What it carries |
| The calendar list, as |
| One calendar, as |
| One event, as |
They carry no handles and take no arguments, which is why there is no resource for a schedule: a window and a zone are not optional here, and a URI with nowhere to state them would have to invent both.
Working hours
check_availability answers over a window, and a window is one interval
— so "next week, 09:00 to 17:00" cannot be asked for as one, and the
longest gap in the answer is a fifteen-hour overnight one that passes any
min_minutes. working_from, working_to and working_days mask the
free gaps to a working week instead. There is no default: without them
every hour of the window counts, and the result always says which was
used. The mask is applied in the zone the answer is rendered in, day by
local day, so 09:00 is still 09:00 on the Sunday the clocks change.
Meeting links
create_event takes conference: true and asks Google for a Google Meet
link. The link normally comes back with the event; Google documents the
conference as generated asynchronously, so the result may instead say it
is still being made, and then you read the event again for it. Either
way the result says which, and never reports a link it does not have. A
link can only be attached as the event is created; this server does not
add one to an event that already exists, and says so rather than failing
quietly.
Safety
The two tools that remove something Calendar cannot bring back —
delete_calendarandclear_calendar— are not registered at all unlessGCAL_ENABLE_DESTRUCTIVE=true, and each still needsconfirm: trueon the call.cancel_eventis deliberately not behind that flag: cancelling a meeting is what a calendar is for, Google keeps the record, and a gate everybody turns on protects nobody.docs/architecture.md§9 argues it. What guards it instead is the requiredscopeand the requirednotify.A cancellation with
notify: noneremoves the meeting from your calendar and leaves it on your guests'. The result says so every time.Sharing is the one act here whose effect leaves your account, so
share_calendarrequiresnotifylike every other write — and here Google's own default is to email, the opposite of its default on an event. Sharing with "anyone" publishes the calendar to the whole internet and needsallow_public: true; removing the rule afterwards stops new readers and takes nothing back from whoever already looked. Removing access notifies nobody, because Google offers no way to ask for it: they are not told, they find the calendar gone.GCAL_SHARING=offremoves the three sharing tools entirely.Logs carry the method, tool, outcome, duration and a truncated calendar id. Never an email address, event title, description, location or search term. A debug log is safe to paste into a bug report by construction.
Development
make check runs everything CI runs, and make parity asserts that
those two lists are the same. See CONTRIBUTING.md.
Two things are run by hand rather than by CI, because they reach outside
this repository. make live drives the built binary against a real
account, on a scratch calendar it creates and deletes. make evals
scores whether a model can complete the three tasks of
docs/architecture.md §3 through these tools, against the in-memory
calendar, and needs an ANTHROPIC_API_KEY;
go run -tags=evals ./scripts/evals -self-check exercises the harness
without a key or a model.
Licence
Apache 2.0. See LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
A MCP server that works with Google Calendar to manage event listing, reading, and updates.
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
MCP server for Cronofy — read calendars, events and free/busy, and create, update or delete events.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceIntegrates Google Calendar with AI assistants via MCP, enabling calendar listing and event CRUD operations.-
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Google Calendar through a unified MCP API for managing events, calendars, and related tools.MIT
- FlicenseNot gradedqualityDmaintenanceEnables MCP clients to manage Google Calendar events, including CRUD operations, recurring events, free/busy queries, and push notifications via webhooks.-
- FlicenseNot gradedqualityDmaintenanceEnables interaction with Google Calendar via MCP, allowing users to list, get, search, and create events as well as list accessible calendars.-