drio
Open app

Calendar AutoAuth MCP Server

Source

A Model Context Protocol (MCP) server for Google Calendar integration in Cluade Desktop with auto authentication support. This server enables AI assistants to manage Google Calendar events through natural language interactions.

Catalog onlyCatalog onlySTDIO

Overview

Calendar AutoAuth MCP Server is a Model Context Protocol (MCP) server designed for seamless integration with Google Calendar, enabling AI assistants to manage calendar events using natural language processing and auto-authentication features.

To use the server, set up a Google Cloud Project with the necessary OAuth credentials, then run the server locally or via Docker to authenticate and manage events on a Google Calendar through calls made from your AI assistant.

  • Create, retrieve, update, and delete calendar events - List events within specified time ranges - Simple OAuth2 authentication with automatic browser launch - Global credential storage for convenience - Docker support for easier deployment
  1. Automating event scheduling for teams.
  2. Managing personal calendar events through voice commands.
  3. Integrating calendar functionalities into intelligent assistants for user-friendly interaction.

Add to your AI client

Use these steps to connect Calendar AutoAuth 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": {
    "calendar-autoauth-mcp-server-gongrzhe": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-calendar-autoauth-mcp-server-gongrzhe"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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