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.
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
- Go to the Google Cloud Console
- Create a new project or select an existing one
- Enable the Google Calendar API:
- Navigate to "APIs & Services" > "Library"
- Search for "Google Calendar API"
- Click "Enable"
- 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
- 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:
- Open a browser window for Google OAuth authentication
- Ask you to grant calendar access permissions
- 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:
- Authenticate locally first (one-time):
python server.py - Build and run:
docker-compose build && docker-compose up -d - 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 IDcalendar_id(optional): Calendar ID (default: 'primary')
search_events
Search for calendar events by text query.
Parameters:
query(required): Text to search fortime_min(optional): Start time in ISO formattime_max(optional): End time in ISO formatmax_results(optional): Maximum results (default: 10)
create_event
Create a new calendar event.
Parameters:
summary(required): Event titlestart_time(required): Start time in ISO formatend_time(required): End time in ISO formatdescription(optional): Event descriptionlocation(optional): Event locationattendees(optional): Array of attendee email addressescalendar_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:00for Central Time) - UTC times should end with 'Z' (e.g.,
2026-01-22T17:00:00Z)
Troubleshooting
Authentication Issues
- Delete
~/.config/google-calendar-mcp/token.jsonand 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.jsonortoken.jsonto 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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.