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-paras

v1.0.3

Published

MCP server for Google Calendar - schedule meetings, create Google Meet links, manage events

Downloads

270

Readme

🗓️ Google Calendar MCP Server

A powerful Model Context Protocol (MCP) server that integrates Google Calendar with Claude AI — allowing you to manage your calendar using natural language.

npm version License: ISC


✨ Features

  • 📅 List Events — View upcoming events with full details
  • Create Events — Schedule meetings with titles, locations, and attendees
  • ✏️ Update Events — Modify existing events easily
  • 🗑️ Delete Events — Remove events from your calendar
  • 📆 Multiple Calendars — Support for all your Google Calendars
  • 🔐 Secure Auth — OAuth 2.0 authentication with Google

📋 Prerequisites


🔑 Step 1 — Get Google API Credentials

  1. Go to Google Cloud Console
  2. Create a new project
  3. Go to APIs & ServicesEnable APIs → Enable Google Calendar API
  4. Go to APIs & ServicesCredentials
  5. Click "Create Credentials""OAuth 2.0 Client ID"
  6. Choose "Web Application" as the application type
  7. Add http://localhost:3000/callback to Authorized Redirect URIs
  8. Click Create and copy your:
    • GOOGLE_CLIENT_ID
    • GOOGLE_CLIENT_SECRET

🚀 Step 2 — Add to Claude Desktop

Open your Claude Desktop config file:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

Add this configuration:

{
  "mcpServers": {
    "google-calendar": {
      "command": "npx",
      "args": ["-y", "google-calendar-mcp-server-paras"],
      "env": {
        "GOOGLE_CLIENT_ID": "your-client-id-here",
        "GOOGLE_CLIENT_SECRET": "your-client-secret-here",
        "GOOGLE_REDIRECT_URI": "http://localhost:3000/callback"
      }
    }
  }
}

Step 3 — Restart Claude Desktop

That's it! No installation needed — npx handles everything automatically. ✅


💬 Usage Examples

Once set up, just talk to Claude naturally:

Listing Events

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

Creating Events

"Schedule a meeting with John tomorrow at 2pm" "Create a team lunch next Friday at 12pm" "Add a doctor's appointment on Monday at 10am"

Updating Events

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

Deleting Events

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


🔧 Environment Variables

| Variable | Description | Example | |---|---|---| | GOOGLE_CLIENT_ID | OAuth 2.0 Client ID | 123456789.apps.googleusercontent.com | | GOOGLE_CLIENT_SECRET | OAuth 2.0 Client Secret | GOCSPX-xxxxx | | GOOGLE_REDIRECT_URI | OAuth Redirect URI | http://localhost:3000/callback |


🛡️ Security

  • All credentials are stored securely via environment variables
  • OAuth 2.0 ensures secure access to Google Calendar
  • No credentials are ever committed to version control

🤝 Contributing

Contributions are welcome! Feel free to open a Pull Request or Issue.


📄 License

ISC © paras0511