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

@mcp-wormhole/google-calendar

v0.1.0

Published

MCP server for Google Calendar — 12 tools, 6 prompt workflows, and browsable gcal:// resources via the Google Calendar API.

Readme

@mcp-wormhole/google-calendar

npm version npm downloads

Full-stack Google Calendar MCP server — 12 tools, 6 prompt workflows, and browsable gcal:// resources via the official Google Calendar API.

Highlights

| | | |---|---| | Tools | 12 across calendars, events, search, free/busy, quick-add, RSVP | | Prompts | 6 MCP workflow templates (today_agenda, find_meeting_time, …) | | Resources | Browse calendars → events at gcal:// URIs | | Auth | OAuth2 refresh token JSON or service account | | Transport | stdio (npx) |

Quick start

npx -y @mcp-wormhole/google-calendar
# set GOOGLE_CALENDAR_CREDENTIALS in env
{
  "mcpServers": {
    "google-calendar": {
      "command": "npx",
      "args": ["-y", "@mcp-wormhole/google-calendar"],
      "env": {
        "GOOGLE_CALENDAR_CREDENTIALS": "{\"client_id\":\"...\",\"client_secret\":\"...\",\"refresh_token\":\"...\"}"
      }
    }
  }
}

Optional: "GOOGLE_CALENDAR_ID": "primary" to set a default calendar.

Authentication

  1. Create a Google Cloud project and enable the Google Calendar API
  2. Create OAuth 2.0 credentials (Desktop app) or a service account
  3. For OAuth user access, obtain a refresh token with calendar scope
  4. Paste the JSON into GOOGLE_CALENDAR_CREDENTIALS (inline or file path)

Docs: Google Calendar API auth

MCP prompt workflows

| Prompt | Purpose | |--------|---------| | today_agenda | Chronological summary of today's events | | week_ahead_overview | Next 7 days — conflicts and gaps | | meeting_prep_brief | Prep brief for a specific event | | find_meeting_time | Mutual free slots across calendars | | scheduling_conflict_scan | Overlaps and tight turnarounds | | focus_time_planner | Suggest deep-work blocks |

Browsable resources

| URI | Content | |-----|---------| | gcal://catalog | Tool/prompt/resource index | | gcal://calendars | All calendars | | gcal://calendar/{calendar_id} | Calendar detail | | gcal://calendar/{calendar_id}/events | Upcoming events |

Tool list

  • Calendarsgcal_list_calendars, gcal_get_calendar
  • Events — list, get, create, update, delete, search, upcoming, quick-add
  • Schedulinggcal_find_free_slots, gcal_rsvp_event

Development

cp .env.example .env   # add GOOGLE_CALENDAR_CREDENTIALS
pnpm install && pnpm build
pnpm verify

License

MIT — see LICENSE.