Google Calendar MCP Server
Allows to list upcoming events from your Google Calendar, providing read-only access to event titles and start times.
Click on "Install 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 MCP ServerWhat's on my calendar today?"
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 Server
A local MCP (Model Context Protocol) server that exposes Google Calendar as a tool for Claude Desktop — ask Claude natural-language questions about your schedule, and it fetches real data from your actual Google Calendar.
What it does
Connects to Claude Desktop as an MCP server over stdio
Authenticates with Google Calendar via OAuth 2.0 (Desktop app flow)
Exposes a
list_eventstool that returns upcoming events from the user's primary calendar
Example: ask Claude Desktop "What's on my calendar?" and it calls this server behind the scenes to fetch and summarize your actual events.
Tech stack
Python 3.12
MCP Python SDK (
mcp) — server framework, tool registration via@mcp.tool()Google Calendar API (
google-api-python-client) — fetching calendar dataOAuth 2.0 (
google-auth-oauthlib) — Desktop app authentication flowTransport: stdio (Claude Desktop launches the server as a subprocess and communicates over stdin/stdout)
Architecture
Claude Desktop acts as the MCP client. When it starts, it launches this server as a subprocess and discovers its available tools. When a user asks a calendar-related question:
Claude (the model) decides to call
list_events, based on the tool's description and schemaClaude Desktop sends that call to this server over stdio, using MCP's JSON-RPC protocol
The server authenticates with Google (using a saved OAuth token, refreshing silently if needed) and calls the real Google Calendar REST API
The server returns the results, which flow back through Claude Desktop to the model, which replies in natural language
Three distinct message formats are involved end-to-end: the Anthropic API format (Claude Desktop ↔ the model), MCP's JSON-RPC format (Claude Desktop ↔ this server), and Google's own REST API format (this server ↔ Google Calendar).
Setup
Clone the repo
git clone https://github.com/aukay13/google-calendar-mcp-server.git cd google-calendar-mcp-serverCreate a virtual environment
python -m venv venv venv\Scripts\activate # WindowsInstall dependencies
pip install -r requirements.txtGet your own Google Calendar API credentials
Create a project in Google Cloud Console
Enable the Google Calendar API
Configure the OAuth consent screen (External, add yourself as a test user)
Create OAuth credentials (type: Desktop app)
Download the credentials file, save it in the project root as
credentials.json
credentials.jsonandtoken.jsonare gitignored — you must supply your own; they're never included in this repo.Add the server to Claude Desktop's config (
claude_desktop_config.json):{ "mcpServers": { "calendar-server": { "command": "<path-to-venv>\\Scripts\\python.exe", "args": ["<path-to-project>\\calendar_server.py"] } } }Restart Claude Desktop fully (not just close the window) after editing.
On first use, a browser window will open asking you to log in and grant calendar access. After that, a
token.jsonis saved locally and no further login is needed.
Current capability
list_events(max_results: int = 10)— read-only access, lists upcoming events with start time and title
Planned expansion
This project is intentionally scoped small to focus on learning core MCP concepts first. Natural next step: a create_event tool, allowing Claude to add new events directly to the calendar — this would require:
Upgrading the OAuth scope from read-only to write access (
calendar.eventsorcalendar)Re-authenticating (deleting the existing
token.jsonto trigger fresh consent under the new scope)A new
@mcp.tool()-decorated function accepting event details (title, start/end time) and calling Google'sevents().insert()API
Other possible extensions: date-range filtering (currently only supports a result count, not an actual date range), and a streamable-http transport variant for running the server independently of Claude Desktop's process lifecycle.
Disclaimer
Built as a hands-on learning project to understand MCP (Model Context Protocol) concepts — tool registration, discovery, transports, and the client-server protocol — using a real, practical integration rather than a toy example.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aukay13/google-calendar-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server