Google Calendar MCP Server

Google Calendar MCP Server

Enables AI assistants to manage Google Calendar events, check availability, and handle scheduling tasks through natural language.

Category
Visit Server

README

[!IMPORTANT]

āš ļø Looking for a Complete Google MCP Solution?

This repository provides Google Calendar integration only. If you need a full-featured Google MCP package — including Gmail, Google Drive, Google Calendar, and more — check out my complete workspace package:

šŸ‘‰ mcp-google-workspace

The mcp-google-workspace package bundles all Google service integrations into a single, easy-to-configure MCP server. It's the recommended choice for most users.


Google Calendar MCP Server

A Model Context Protocol (MCP) server that allows Claude and other MCP clients to interact with Google Calendar. This server enables AI assistants to manage your calendar events, check availability, and handle scheduling tasks.

Features

Calendar Management

  • List Events (get-events)

    • View events from any calendar
    • Filter by time range
    • Limit number of results
  • List Calendars (list-calendars)

    • View all available calendars
    • Access calendar IDs and settings
  • Get Timezone Info (get-timezone-info)

    • Get user's timezone information
  • Get Current Date (get-current-date)

    • Get current date and time in user's timezone
    • Useful for AI models with outdated knowledge cutoff dates

Event Operations

  • Create Events (create-event)

    • Schedule new events with full feature support
    • Add attendees and set reminders
    • Include conference links and attachments
    • Set visibility, transparency, and colors
    • Configure recurring events
    • Automatic timezone detection and conflict checking
  • Update Events (update-event)

    • Modify existing events
    • Change time/date with conflict checking
    • Add/remove attendees
    • Update any event details
    • Control notification settings
  • Delete Events (delete-event)

    • Remove events from calendar
    • Control notification settings for attendees

Availability Management

  • Check Availability (check-availability)
    • Check free/busy status for multiple calendars
    • Time zone awareness
    • Support for checking other users' availability

Requirements

  • Python >= 3.12
  • Google Cloud Console Project with Calendar API enabled
  • OAuth 2.0 credentials

Installation

1. Set up Google Cloud Project

  1. Go to Google Cloud Console
  2. Create a new project or select existing one
  3. Enable Google Calendar API
  4. Create OAuth 2.0 credentials (Desktop Application type)
  5. Download credentials and save as credentials.json in the \mcp_server_google_calendar folder

2. Install the Package

# Clone or download the project
cd mcp-google-calendar

# Install the package
pip install -e .

3. Authentication Setup

On first run, the server will automatically open your browser for OAuth authentication. Your credentials will be saved for future use.

Usage

This server can run in two modes:

STDIO Mode (for Claude Desktop)

Configure Claude Desktop:

Add the following to your Claude Desktop configuration file:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "google_calendar": {
      "command": "mcp-server-google-calendar"
    }
  }
}

Alternative using Python module:

{
  "mcpServers": {
    "google_calendar": {
      "command": "python",
      "args": ["-m", "mcp_server_google_calendar"]
    }
  }
}

Restart Claude Desktop after configuration changes.

SSE Mode (for web applications and other clients)

Run the server with SSE transport:

# Using the installed command
mcp-server-google-calendar-sse

# Or using Python module
python -m mcp_server_google_calendar.server_sse

# With custom host/port
python -m mcp_server_google_calendar.server_sse --host 0.0.0.0 --port 8001

The SSE server will be available at:

  • Server: http://localhost:8000
  • SSE Endpoint: http://localhost:8000/sse

Example Commands

Here are some things you can ask Claude:

Event Creation

  • "Create an event called 'Team Meeting' for tomorrow at 2pm"
  • "Schedule a recurring meeting every Monday at 10am"
  • "Set up a video call with John for next Tuesday afternoon"

Event Management

  • "Move my 2pm meeting to 4pm"
  • "Add Jane (jane@example.com) to tomorrow's team meeting"
  • "Cancel my meeting with John"
  • "Update the location of today's team lunch"

Calendar Queries

  • "What meetings do I have this week?"
  • "When am I free tomorrow afternoon?"
  • "Check if both Alice and Bob are available next Monday at 3pm"
  • "List all my recurring events"

Date/Time Information

  • "What's today's date?" (useful for models with outdated knowledge)
  • "What day of the week is it?"
  • "What's my current timezone?"

Advanced Features

Time Conflict Detection

The server automatically checks for time conflicts when creating or updating events and will warn you about overlapping events.

Timezone Support

  • Automatic timezone detection from your Google Calendar settings
  • Manual timezone specification for events
  • Proper handling of timezone conversions

Recurring Events

Full support for recurring events using iCalendar RRULE format:

  • Daily, weekly, monthly, yearly patterns
  • Custom recurrence rules
  • Exception dates and rules

Attendee Management

  • Add/remove attendees with email validation
  • Set optional vs required attendees
  • Control response status and notifications
  • Support for additional guests

Troubleshooting

Authentication Issues

  • Ensure credentials.json is in the project root directory
  • Check if OAuth consent screen is configured in Google Cloud Console
  • Verify Calendar API is enabled
  • Delete token.json to force re-authentication if needed

Server Connection Issues

  • Verify Python version (>= 3.12 required)
  • Check Claude Desktop configuration file syntax
  • Restart Claude Desktop after configuration changes
  • For SSE mode, ensure the port is not in use

Event Creation Problems

  • Confirm calendar permissions in Google Calendar
  • Check for time conflicts with existing events
  • Verify attendee email addresses are valid
  • Ensure timezone format is correct

File Structure

mcp-google-calendar/
ā”œā”€ā”€ mcp_server_google_calendar/
│   ā”œā”€ā”€ __init__.py
│   ā”œā”€ā”€ __main__.py          # STDIO mode entry point
│   ā”œā”€ā”€ __main_sse__.py      # SSE mode entry point
│   ā”œā”€ā”€ credentials.json      # Google OAuth credentials (you provide)
│   ā”œā”€ā”€ server.py            # STDIO server implementation
│   ā”œā”€ā”€ server_sse.py        # SSE server implementation
│   ā”œā”€ā”€ schemas.py           # Pydantic schemas
│   ā”œā”€ā”€ auth/                # Authentication module
│   ā”œā”€ā”€ tools/               # Tool definitions
│   └── utils/               # Utility functions
ā”œā”€ā”€ token.json              # Saved auth token (auto-generated)
ā”œā”€ā”€ pyproject.toml          # Project configuration
└── README.md

Notes

  • The server maintains separate implementations for STDIO and SSE modes with identical features
  • Both modes support automatic timezone detection and conflict checking
  • All times should be specified in YYYY-MM-DDTHH:MM:SS format or RFC3339
  • Calendar ID 'primary' refers to the user's default calendar
  • Event updates maintain existing data for unspecified fields
  • The server automatically handles timezone detection and conversion

License

MIT License

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured