google-calendar-mcp-server

google-calendar-mcp-server

Enables interaction with Google Calendar via MCP, allowing users to list, get, search, and create events as well as list accessible calendars.

Category
Visit Server

README

Google Calendar MCP Server

A Model Context Protocol (MCP) server that provides access to Google Calendar.

Features

  • List calendar events within a time range
  • Get details of specific events
  • Search events by text query
  • Create new calendar events
  • List all accessible calendars

Setup Instructions

1. Get Google Calendar API Credentials

  1. Go to the Google Cloud Console
  2. Create a new project or select an existing one
  3. Enable the Google Calendar API:
    • Navigate to "APIs & Services" > "Library"
    • Search for "Google Calendar API"
    • Click "Enable"
  4. Create OAuth 2.0 credentials:
    • Go to "APIs & Services" > "Credentials"
    • Click "Create Credentials" > "OAuth client ID"
    • Select "Desktop app" as the application type
    • Download the credentials JSON file
  5. Save the credentials file as ~/.config/google-calendar-mcp/credentials.json

2. Install Dependencies

pip install -r requirements.txt

3. Configure MCP

Add this to your MCP configuration file (usually ~/.config/mcp/config.json or similar):

{
  "mcpServers": {
    "google-calendar": {
      "command": "python",
      "args": ["/path/to/google-calendar-mcp/server.py"]
    }
  }
}

4. First Run - Authentication

On the first run, the server will:

  1. Open a browser window for Google OAuth authentication
  2. Ask you to grant calendar access permissions
  3. Save the authentication token to ~/.config/google-calendar-mcp/token.json

Future runs will use the saved token automatically.

Docker Deployment

You can run the Google Calendar MCP Server in Docker for easier deployment and isolation. See DOCKER.md for comprehensive Docker setup instructions.

Quick Start:

  1. Authenticate locally first (one-time): python server.py
  2. Build and run: docker-compose build && docker-compose up -d
  3. Configure your MCP client to use: docker exec -i google-calendar-mcp python -u server.py

See DOCKER.md for detailed instructions, troubleshooting, and advanced configurations.

Available Tools

list_events

List calendar events for a specified time range.

Parameters:

  • time_min (optional): Start time in ISO format (defaults to now)
  • time_max (optional): End time in ISO format (defaults to end of today)
  • max_results (optional): Maximum number of events (default: 10, max: 250)
  • calendar_id (optional): Calendar ID to query (default: 'primary')

Example:

{
  "time_min": "2026-01-22T00:00:00Z",
  "time_max": "2026-01-22T23:59:59Z",
  "max_results": 20
}

get_event

Get details of a specific calendar event.

Parameters:

  • event_id (required): The event ID
  • calendar_id (optional): Calendar ID (default: 'primary')

search_events

Search for calendar events by text query.

Parameters:

  • query (required): Text to search for
  • time_min (optional): Start time in ISO format
  • time_max (optional): End time in ISO format
  • max_results (optional): Maximum results (default: 10)

create_event

Create a new calendar event.

Parameters:

  • summary (required): Event title
  • start_time (required): Start time in ISO format
  • end_time (required): End time in ISO format
  • description (optional): Event description
  • location (optional): Event location
  • attendees (optional): Array of attendee email addresses
  • calendar_id (optional): Calendar ID (default: 'primary')

Example:

{
  "summary": "Team Meeting",
  "start_time": "2026-01-23T10:00:00-06:00",
  "end_time": "2026-01-23T11:00:00-06:00",
  "description": "Weekly sync",
  "location": "Conference Room A",
  "attendees": ["colleague@example.com"]
}

list_calendars

List all calendars accessible to the user.

No parameters required.

Time Format Notes

  • All times should be in ISO 8601 format
  • Include timezone offset for accuracy (e.g., -06:00 for Central Time)
  • UTC times should end with 'Z' (e.g., 2026-01-22T17:00:00Z)

Troubleshooting

Authentication Issues

  • Delete ~/.config/google-calendar-mcp/token.json and re-authenticate
  • Verify credentials.json is valid and in the correct location
  • Check that Google Calendar API is enabled in Google Cloud Console

Permission Errors

  • Ensure the OAuth consent screen is configured
  • Add test users if the app is in testing mode
  • Verify the scopes include calendar access

Security Notes

  • Never commit credentials.json or token.json to version control
  • The token file contains refresh tokens that provide ongoing access
  • Regularly review OAuth app permissions in Google Account settings

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