drio
Open app

Google Calendar MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

Google Calendar MCP Server is a tool that integrates with Google Calendar to automate event management and scheduling tasks using natural language commands.

To use the Google Calendar MCP Server, ensure you have Node.js installed, then initialize the server with the command npx mcp-server-google-calendar init and restart Claude Desktop. You can then issue commands to manage your calendar events.

  • Natural language processing for scheduling events - Integration with Google Calendar for real-time updates - Easy setup and usage with Node.js and Claude Desktop
  1. Automatically creating events based on user commands.
  2. Checking availability for meetings between multiple participants.
  3. Managing and listing calendar events with simple queries.

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the requirements to use this server?

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

How do I create an event?

You can create an event by simply asking, for example, `Create an event called "Chill" whenever I have time on Monday after 8pm.`

Can I check my availability?

Yes! You can check your availability by asking, for example, `Check whenever both me and Arian are free this week between 9am and 5pm and schedule a meeting called "Going over MCP"`.