MCP Google Calendar
A Model Context Protocol (MCP) server for Google Calendar integration with Claude and other AI assistants.
Overview
MCP Google Calendar is a Model Context Protocol (MCP) server that enables integration with Google Calendar, allowing AI assistants like Claude to manage calendar events through natural language.
To use MCP Google Calendar, install it via npm, configure your Google API credentials, and run the server. You can then interact with it through an AI assistant by issuing commands related to your calendar.
- View, create, update, and delete calendar events - Search for events by time range, keywords, or participants - Get free/busy times for scheduling - List available calendars - Set up meeting invitations with attendees
- Scheduling meetings with colleagues using natural language.
- Checking availability for events and finding free time slots.
- Managing personal and work calendars seamlessly through AI.
Add to your AI client
Use these steps to connect MCP Google Calendar in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-google-calendar-takumi0706": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-calendar-takumi0706"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-google-calendar-takumi0706": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-calendar-takumi0706"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-google-calendar-takumi0706": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-calendar-takumi0706"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-google-calendar-takumi0706": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-calendar-takumi0706"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-google-calendar-takumi0706": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-calendar-takumi0706"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-google-calendar-takumi0706": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-calendar-takumi0706"
]
}
}
}