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

n8n-nodes-service-account-google-calendar

v0.4.1

Published

n8n node for Google Calendar with Service Account authentication

Downloads

39

Readme

n8n-nodes-service-account-google-calendar

This is an n8n community node that allows you to use Google Calendar API with Service Account authentication instead of OAuth2.

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in n8n
  2. Select Install
  3. Enter n8n-nodes-service-account-google-calendar
  4. Agree to the risks and install

Manual Installation

npm install n8n-nodes-service-account-google-calendar

Setup

1. Create a Service Account

  1. Go to Google Cloud Console
  2. Create or select a project
  3. Enable the Google Calendar API
  4. Go to IAM & Admin > Service Accounts
  5. Click Create Service Account
  6. Give it a name and click Create
  7. Click on the created service account
  8. Go to Keys tab
  9. Click Add Key > Create New Key
  10. Select JSON and download the file

2. Configure Domain-Wide Delegation (Optional)

If you need to access calendars of users in your Google Workspace:

  1. In the service account details, click Show Domain-Wide Delegation
  2. Enable Domain-Wide Delegation
  3. Copy the Client ID
  4. Go to Google Workspace Admin Console
  5. Navigate to Security > API Controls > Domain-wide Delegation
  6. Click Add new
  7. Paste the Client ID
  8. Add the scope: https://www.googleapis.com/auth/calendar
  9. Click Authorize

3. Share Calendar with Service Account

Share your Google Calendar with the service account email address (found in the JSON file as client_email).

4. Configure n8n Credentials

  1. In n8n, create new credentials: Google Calendar Service Account API
  2. Enter the Service Account Email (from JSON: client_email)
  3. Enter the Private Key (from JSON: private_key)
  4. (Optional) Enter Impersonate User Email if using domain-wide delegation

Operations

Event

  • Create: Create a new calendar event
  • Get: Get a specific event
  • Get Many: List events from a calendar
  • Update: Update an existing event
  • Delete: Delete an event

Calendar

  • Get Many: List all calendars

Example Usage

Create an Event

  • Calendar ID: primary or specific calendar ID
  • Summary: Event title
  • Start: Event start time
  • End: Event end time
  • Additional Fields:
    • Description
    • Location
    • Attendees (comma-separated emails)

Compatibility

Tested with n8n version 1.0.0+

Resources

License

MIT