npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@node2flow/google-calendar-mcp

v1.0.4

Published

MCP server for Google Calendar — create events, manage calendars, check availability, and share calendars through 28 tools

Readme

@node2flow/google-calendar-mcp

smithery badge npm version License: MIT

MCP server for Google Calendar — create events, manage calendars, check availability, and share calendars through 28 tools via the Model Context Protocol.

Quick Start

Claude Desktop / Cursor

Add to your MCP config:

{
  "mcpServers": {
    "google-calendar": {
      "command": "npx",
      "args": ["-y", "@node2flow/google-calendar-mcp"],
      "env": {
        "GOOGLE_CLIENT_ID": "your-client-id",
        "GOOGLE_CLIENT_SECRET": "your-client-secret",
        "GOOGLE_REFRESH_TOKEN": "your-refresh-token"
      }
    }
  }
}

HTTP Mode

GOOGLE_CLIENT_ID=xxx GOOGLE_CLIENT_SECRET=xxx GOOGLE_REFRESH_TOKEN=xxx npx @node2flow/google-calendar-mcp --http

MCP endpoint: http://localhost:3000/mcp

Cloudflare Worker

Available at: https://google-calendar-mcp-community.node2flow.net/mcp

POST https://google-calendar-mcp-community.node2flow.net/mcp?GOOGLE_CLIENT_ID=xxx&GOOGLE_CLIENT_SECRET=xxx&GOOGLE_REFRESH_TOKEN=xxx

Tools (28)

Events (10)

| Tool | Description | |------|-------------| | gcal_list_events | List events with time range, search query, pagination | | gcal_get_event | Get event details (attendees, reminders, recurrence) | | gcal_create_event | Create event (timed/all-day, attendees, recurrence, reminders) | | gcal_update_event | Full update of an event (PUT — replaces all fields) | | gcal_patch_event | Partial update (PATCH — only specified fields change) | | gcal_delete_event | Delete an event | | gcal_quick_add | Create event from natural language text | | gcal_move_event | Move event to another calendar | | gcal_list_instances | List instances of a recurring event | | gcal_import_event | Import event with iCalUID |

CalendarList (5)

| Tool | Description | |------|-------------| | gcal_list_calendars | List user's subscribed calendars | | gcal_get_calendar_entry | Get calendar display settings | | gcal_add_calendar | Subscribe to an existing calendar | | gcal_update_calendar_entry | Update display settings (color, name, reminders) | | gcal_remove_calendar | Unsubscribe from a calendar |

Calendars (5)

| Tool | Description | |------|-------------| | gcal_get_calendar | Get calendar metadata | | gcal_create_calendar | Create a new secondary calendar | | gcal_update_calendar | Update calendar metadata | | gcal_delete_calendar | Delete a secondary calendar | | gcal_clear_calendar | Delete all events from a calendar |

ACL (5)

| Tool | Description | |------|-------------| | gcal_list_acl | List access control rules | | gcal_get_acl | Get a specific ACL rule | | gcal_create_acl | Share calendar with user/group/domain | | gcal_update_acl | Update sharing permission | | gcal_delete_acl | Remove sharing permission |

Utility (3)

| Tool | Description | |------|-------------| | gcal_query_freebusy | Check availability for scheduling | | gcal_get_colors | Get color palette for events/calendars | | gcal_list_settings | List user calendar settings |


DateTime Format

Google Calendar uses RFC 3339 format for date-times:

Timed events:   2026-03-15T10:00:00-05:00    (with timezone offset)
                2026-03-15T15:00:00Z          (UTC)
All-day events: 2026-03-15                    (date only, YYYY-MM-DD)

For all-day events, the end date is exclusive — a single-day event on March 15 uses start_date=2026-03-15 and end_date=2026-03-16.


Recurrence Rules

Events can repeat using RRULE format:

Daily:    ["RRULE:FREQ=DAILY"]
Weekly:   ["RRULE:FREQ=WEEKLY;BYDAY=MO,WE,FR"]
Monthly:  ["RRULE:FREQ=MONTHLY;BYMONTHDAY=15"]
Yearly:   ["RRULE:FREQ=YEARLY;BYMONTH=3;BYMONTHDAY=15"]
Until:    ["RRULE:FREQ=WEEKLY;BYDAY=MO;UNTIL=20261231T235959Z"]
Count:    ["RRULE:FREQ=DAILY;COUNT=10"]

Configuration

| Parameter | Required | Description | |-----------|----------|-------------| | GOOGLE_CLIENT_ID | Yes | OAuth 2.0 Client ID from Google Cloud Console | | GOOGLE_CLIENT_SECRET | Yes | OAuth 2.0 Client Secret | | GOOGLE_REFRESH_TOKEN | Yes | Refresh token (obtained via OAuth consent flow) |

Getting Your Credentials

  1. Go to Google Cloud Console
  2. Create a project and enable Google Calendar API
  3. Create OAuth 2.0 Client ID (Desktop app type)
  4. Use the OAuth Playground or your app to get a refresh token with the Calendar scope

OAuth Scopes

| Scope | Access | |-------|--------| | calendar | Full read/write access (recommended) | | calendar.readonly | Read-only access | | calendar.events | Read/write events only | | calendar.events.readonly | Read events only | | calendar.settings.readonly | Read calendar settings | | calendar.calendarlist.readonly | Read calendar list only |


License

MIT License - see LICENSE

Copyright (c) 2026 Node2Flow

Links