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

google-calendar-mcp-server

v1.0.1

Published

MCP server for Google Calendar integration

Readme

Google Calendar MCP Server

A powerful Model Context Protocol (MCP) server that integrates with Google Calendar to provide intelligent, context-aware calendar management capabilities.

Features

  • Smart Calendar Management

    • List and view upcoming events with detailed information
    • Create new events with custom titles, locations, and attendees
    • Update existing events with new information
    • Delete events from your calendar
    • Support for multiple calendars
  • Context-Aware Operations

    • Maintains context between calendar operations
    • Intelligent event formatting and display
    • Secure authentication and token management
    • Robust error handling and validation

Prerequisites

  • Node.js (v16 or higher)
  • Google Cloud Platform account
  • Google Calendar API enabled
  • OAuth 2.0 credentials from Google Cloud Console

Setup

  1. Clone the repository:

    git clone https://github.com/yourusername/google-calendar-mcp.git
    cd google-calendar-mcp
  2. Install dependencies:

    npm install
  3. Create a .env file:

    cp .env.example .env
  4. Update the .env file with your Google Calendar API credentials:

    • GOOGLE_CLIENT_ID: Your Google Cloud Console client ID
    • GOOGLE_CLIENT_SECRET: Your Google Cloud Console client secret
    • GOOGLE_REDIRECT_URI: Your configured redirect URI
  5. Build the project:

    npm run build
  6. Start the server:

    npm start

Usage Examples

The MCP server supports various calendar operations through natural language commands:

Event Listing

  • "Show me my next 5 upcoming events"
  • "List all events for next week"
  • "What's on my calendar for tomorrow?"

Event Creation

  • "Schedule a meeting with John and Sarah tomorrow at 2pm"
  • "Create a lunch event with the team next Friday at 12pm"
  • "Add a doctor's appointment for next Monday at 10am"

Event Updates

  • "Move my 2pm meeting to 3pm"
  • "Add Mike to tomorrow's team meeting"
  • "Update the location of Friday's meeting"

Event Deletion

  • "Cancel my 3pm meeting today"
  • "Remove the team lunch from next Friday"

Security

  • All credentials and tokens are stored securely and are not committed to version control
  • OAuth 2.0 authentication ensures secure access to Google Calendar
  • Environment variables are used for sensitive configuration

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.