google-calendar-mcp
Allows reading, creating, updating, and deleting Google Calendar events, including listing upcoming events, searching by keyword, and finding free time slots.
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-mcpWhat's on my calendar this week?"
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 Model Context Protocol (MCP) server that connects Claude Desktop to Google Calendar — letting Claude read, create, update, and delete events directly from conversation.
Demo
Ask Claude things like:
"What's on my calendar this week?"
"Schedule a meeting with John tomorrow at 2pm"
"Find a free hour on Friday afternoon"
"Move my 3pm call to 4pm"
Related MCP server: MCP Calendar Server
Tools
Tool | Description |
| List upcoming events for the next N days |
| Search events by keyword |
| Create a new event with title, time, location, attendees |
| Edit an existing event |
| Delete an event by ID |
| Find open time slots on a given day (8am–6pm) |
Tech Stack
TypeScript + Node.js
MCP SDK (
@modelcontextprotocol/sdk) — Anthropic's standard for AI tool integrationGoogle Calendar API v3 via
googleapisOAuth 2.0 — desktop app flow with local callback server
Setup
1. Google Cloud Console
Create a project at console.cloud.google.com
Enable the Google Calendar API
Create OAuth credentials → Desktop app → download
credentials.jsonAdd your email as a test user under OAuth consent screen → Audience
2. Install & Authenticate
git clone https://github.com/coldinnn/google-calendar-mcp
cd google-calendar-mcp
npm install
cp /path/to/downloaded/credentials.json .
npm run setup # opens browser for OAuth — saves token.json3. Connect to Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"google-calendar": {
"command": "node",
"args": ["/absolute/path/to/google-calendar-mcp/dist/server.js"]
}
}
}Restart Claude Desktop — the calendar tools will appear automatically.
Project Structure
src/
auth.ts # OAuth2 client — loads credentials, refreshes tokens
setup.ts # One-time setup: generates auth URL, catches callback, saves token
server.ts # MCP server — defines all 6 toolsHow It Works
setup.ts starts a local HTTP server on port 3000, generates an OAuth URL, and waits for Google to redirect back with an authorization code. It exchanges the code for access + refresh tokens and saves them to token.json.
server.ts uses McpServer + StdioServerTransport from the MCP SDK. Claude Desktop launches it as a subprocess and communicates over stdin/stdout. Each tool call hits the Google Calendar API and returns formatted text back to Claude.
Token refresh is handled automatically on every request — no manual re-auth needed.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAllows interaction with Google Calendar through Claude Desktop using the Model Context Protocol, enabling calendar event management and schedule analysis.Last updated2
- Flicense-qualityDmaintenanceConnects Claude Desktop to Google Calendar for local calendar management including adding, updating, and deleting events, checking schedules, and calculating travel time between meetings.Last updated1
- Alicense-qualityCmaintenanceEnables Claude to interact with Google Calendar through natural language, providing the ability to view, create, update, and delete calendar events with persistent OAuth2 authentication.Last updated7MIT
- Alicense-qualityDmaintenanceEnables Claude to interact with Google Calendar through OAuth authentication, allowing users to list events, create and manage meetings, update or delete calendar entries, and find available time slots using natural language.Last updated72MIT
Related MCP Connectors
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Schedule and manage Google Calendar events directly from your workspace. Check availability, view…
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/coldinnn/google-calendar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server