drio
Open app

Google Calendar MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

The Google Calendar MCP Server is a tool that interacts with Google Calendar through an MCP (Multi-Command Protocol) interface, allowing users to manage their calendar events effortlessly.

To use the Google Calendar MCP Server, you'll need to have Node.js installed and Claude Desktop set up. After initializing the server, you can issue commands to schedule or check events in your Google Calendar.

  • Seamless integration with Google Calendar - Text-based command interface for easy event management - Voice assistant capabilities for scheduling tasks
  1. Creating events based on user availability queries.
  2. Scheduling meetings between multiple participants.
  3. Retrieving and displaying upcoming events directly from your calendar.

Add to your AI client

Use these steps to connect Google Calendar MCP Server 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-server-google-calendar-eliasuran": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-google-calendar-eliasuran"
      ]
    }
  }
}

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-server-google-calendar-eliasuran": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-google-calendar-eliasuran"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-google-calendar-eliasuran": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-google-calendar-eliasuran"
      ]
    }
  }
}

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-server-google-calendar-eliasuran": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-google-calendar-eliasuran"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-google-calendar-eliasuran": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-google-calendar-eliasuran"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-google-calendar-eliasuran": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-google-calendar-eliasuran"
      ]
    }
  }
}

FAQ

What are the system requirements?

You need Node.js version 18.0.0 or higher and Claude Desktop installed.

Is the Google Calendar MCP Server free to use?

Yes! It is free to use as per the open-source license.

Can I integrate it with other applications?

Yes! It is designed to work alongside any application or service that can perform text-based commands.