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

@kembec/gcal-mcp-linux-x64

v0.1.5

Published

gcal-mcp binary for linux x64

Readme

gcal-mcp

MCP server for Google Calendar. Single Rust binary, no daemon, handles OAuth2 PKCE itself — point it at a credentials JSON, authorize once, tokens refresh silently.

npm license platforms

Install

npm install -g @kembec/gcal-mcp

Supported targets: darwin-arm64, darwin-x64, linux-x64, linux-arm64, win32-x64.

Or build from source:

git clone https://github.com/Kembec/gcal-mcp.git
cd gcal-mcp
cargo build --release

Configure

  1. Create an OAuth client in the Google Cloud Console. Choose Desktop app. Download the JSON.
  2. Set the env var pointing to it:
export GOOGLE_OAUTH_CREDENTIALS=/path/to/client_secret.json
  1. On the first tool call the server opens a browser for authorization, catches the callback on a random local port, and writes a token under ~/.config/kembec/gcal-mcp/tokens/. Subsequent runs refresh silently.

The Calendar scope used is https://www.googleapis.com/auth/calendar.

Add to your MCP client

Cursor / Claude Desktop

{
  "mcpServers": {
    "gcal": {
      "command": "gcal-mcp",
      "env": {
        "GOOGLE_OAUTH_CREDENTIALS": "/path/to/client_secret.json"
      }
    }
  }
}

Or with npx:

{
  "mcpServers": {
    "gcal": {
      "command": "npx",
      "args": ["-y", "@kembec/gcal-mcp"],
      "env": {
        "GOOGLE_OAUTH_CREDENTIALS": "/path/to/client_secret.json"
      }
    }
  }
}

Codex CLI

Add to ~/.codex/config.toml:

[mcp_servers.gcal]
command = "npx"
args = ["-y", "@kembec/gcal-mcp"]
enabled = true

[mcp_servers.gcal.env]
GOOGLE_OAUTH_CREDENTIALS = "/path/to/client_secret.json"

Tools

| Tool | Description | |------|-------------| | list-calendars | List all calendars on the account | | list-events | List events from a calendar with optional time window | | search-events | Full-text search over events | | get-event | Fetch a single event by id | | create-event | Create an event (RFC3339 or YYYY-MM-DD for all-day) | | update-event | Patch an existing event | | delete-event | Delete an event | | respond-to-event | Accept / decline / tentative an invitation | | get-freebusy | Query free/busy windows across calendars | | get-current-time | Return current UTC time | | manage-accounts | Add, list, or remove stored OAuth accounts |

All tools accept an optional account field to select which stored token to use (defaults to "default").

Multi-account

{ "name": "manage-accounts", "arguments": { "action": "add", "account_name": "work" } }

Then pass "account": "work" to any tool.

Token storage

Tokens live in ~/.config/kembec/gcal-mcp/tokens/<account>.json with 0600 permissions (Unix). The directory is 0700.

License

MIT.