Google Calendar MCP Server

Productivitystdiov1.4.0
Репозиторий

MCP server for Google Calendar that lets AI agents view, create, update, and delete events, check availability across calendars, and schedule meetings via the Calendar API with OAuth. Useful for natural-language scheduling and calendar management.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

{
  "mcpServers": {
    "google-calendar": {
      "command": "npx",
      "args": [
        "-y",
        "@cocal/google-calendar-mcp"
      ],
      "env": {
        "GOOGLE_OAUTH_CREDENTIALS": "<YOUR_GOOGLE_OAUTH_CREDENTIALS>"
      }
    }
  }
}

Инструменты (3)

list_events

List events within a time range for a calendar.

{
  "type": "object",
  "required": [
    "time_min",
    "time_max"
  ],
  "properties": {
    "time_max": {
      "type": "string",
      "description": "End of range in ISO 8601 format"
    },
    "time_min": {
      "type": "string",
      "description": "Start of range in ISO 8601 format"
    },
    "calendar_id": {
      "type": "string",
      "description": "Calendar ID (defaults to primary)"
    }
  }
}

create_event

Create a calendar event.

{
  "type": "object",
  "required": [
    "summary",
    "start",
    "end"
  ],
  "properties": {
    "end": {
      "type": "string",
      "description": "End time in ISO 8601 format"
    },
    "start": {
      "type": "string",
      "description": "Start time in ISO 8601 format"
    },
    "summary": {
      "type": "string",
      "description": "Event title"
    },
    "attendees": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Attendee email addresses"
    }
  }
}

check_availability

Find free/busy windows across one or more calendars.

{
  "type": "object",
  "required": [
    "time_min",
    "time_max"
  ],
  "properties": {
    "time_max": {
      "type": "string",
      "description": "End of range in ISO 8601 format"
    },
    "time_min": {
      "type": "string",
      "description": "Start of range in ISO 8601 format"
    },
    "calendar_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Calendars to check"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
nspady (@nspady)
Репозиторий
https://github.com/nspady/google-calendar-mcp
Лицензия
MIT
Версия
1.4.0
Звёзды
1,300
Последнее обновление
24 июня 2026 г.