Google Calendar MCP Server

Productivitystdiov1.4.0
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

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

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
nspady (@nspady)
Repositorio
https://github.com/nspady/google-calendar-mcp
Licencia
MIT
Versión
1.4.0
Estrellas
1,300
Última actualización
24 de junio de 2026