Skip to main content
Glama
takumi0706

Google Calendar MCP Server

by takumi0706

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GOOGLE_CLIENT_IDYesYour Google Cloud OAuth client ID
GOOGLE_REDIRECT_URIYesThe OAuth redirect URI, typically http://localhost:4153/oauth2callbackhttp://localhost:4153/oauth2callback
GOOGLE_CLIENT_SECRETYesYour Google Cloud OAuth client secret

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
getEventsA

List events from a Google Calendar within an optional time range.

createEventA

Create an event on a Google Calendar. Supports all-day events, attendees, reminders and RFC5545 recurrence rules.

updateEventA

Update an existing Google Calendar event. Omitted fields keep their current values.

deleteEventC

Delete an event from a Google Calendar by its event ID.

authenticateA

Start the Google Calendar OAuth flow. Opens a browser window for consent and stores the resulting tokens in memory.

Prompts

Interactive templates invoked by user choice

NameDescription
view_upcoming_eventsShow my upcoming events
create_meetingCreate a new meeting
find_free_timeFind available time slots
reschedule_eventReschedule an existing event
cancel_eventCancel an existing event
weekly_schedule_overviewGet a weekly schedule overview
create_recurring_meetingCreate a recurring meeting
find_meeting_conflictsCheck for scheduling conflicts
prepare_for_todayGet today's schedule summary
schedule_around_eventSchedule new events around existing ones

Resources

Contextual data attached and managed by the client

NameDescription
primary_calendarUser's primary Google Calendar
user_calendarsList of all calendars accessible to the user

TDQS

A3.7/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct action on calendar events—listing, creating, updating, deleting—plus a separate authentication flow. There is no overlap or ambiguity between the tools.

Naming Consistency4/5

Four tools follow a clear verb+Event pattern (getEvents, createEvent, updateEvent, deleteEvent), while authenticate is a necessary but non-parallel exception. Overall the naming is predictable and easy to infer.

Tool Count5/5

Five tools is a well-scoped set for a Google Calendar event server: authentication plus full CRUD operations. Each tool serves a clear purpose without unnecessary bloat.

Completeness5/5

The server covers the full event lifecycle—list, create, update, delete—and includes OAuth authentication as a prerequisite. There are no obvious dead ends or critical missing operations for managing calendar events.

Maintenance

ActivitySlowing
ResponsivenessNo issues