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 🙏

© 2025 – Pkg Stats / Ryan Hefner

mcp-meet

v0.6.4

Published

MCP server for one-click Google Meet scheduling and Apple Calendar mirroring

Readme

mcp-meet

npm version npm downloads License: MIT

If like me you hate running google apps locally because they kill your battery life and you prefer to run the native apple apps, you will know that scheduling calendar events is really annoying with google meet. with this mcp you can just ask claude to schedule the event for you and it will schedule it in your apple calendar and generate a google meet link.

Features

  • Contact Search - Find people in your Google Contacts by name or email
  • Smart Availability - Check free/busy status across multiple calendars and attendees
  • Common Slots - Find times when everyone is actually available
  • One-Click Scheduling - Automatically find the best slot and book it
  • Google Meet Links - Every meeting comes with a Meet link ready to go
  • Apple Calendar Sync - Meetings automatically appear in your macOS Calendar app
  • Full CRUD Operations - List, view, update, and delete meetings with Google and Apple Calendar sync

How it works

Scheduling Tools

  1. search_invitees - Search your Google Contacts to find email addresses
  2. find_slots - Get a list of common free time slots across all attendees
  3. create_meet_and_calendar - Create a Google Calendar event with Meet link and mirror to Apple Calendar
  4. plan_and_schedule - The smart one: finds the first available slot that fits your duration and books it instantly

Meeting Management Tools

  1. list_meetings - List all upcoming Google Meet meetings in a time window
  2. get_meeting_details - Get detailed information about a specific meeting by ID
  3. update_meeting - Update meeting title, time, description, or attendees (syncs to Apple Calendar)
  4. delete_meeting - Delete a meeting from both Google and Apple Calendar

Setup

Prerequisites

  • Node.js 18 or later
  • A Google Cloud project with Calendar and People API enabled
  • OAuth 2.0 credentials (Client ID and Secret)
  • macOS (for Apple Calendar integration)

Installation

npm install mcp-meet

Or clone and build from source:

git clone https://github.com/znz-systems/mcp-meet.git
cd mcp-meet
pnpm install
pnpm build

Configuration

Create a .env file with your Google OAuth credentials:

GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
GOOGLE_REDIRECT_URI=http://localhost:5173

# Optional: Specify which calendars to check for availability (comma-separated)
CALENDAR_IDS=primary,[email protected]

# Optional: Name of the Apple Calendar to create events in (defaults to "Meetings")
APPLE_CALENDAR_NAME=Work

Google OAuth Setup

  1. Go to Google Cloud Console
  2. Create a new project (or select existing)
  3. Enable the Google Calendar API and People API
  4. Create OAuth 2.0 credentials (Desktop app type)
  5. Add http://localhost:5173 as an authorized redirect URI
  6. Copy your Client ID and Client Secret to your .env file

First-time authentication

Run the authentication flow to grant access:

pnpm cli auth

This will open your browser for Google sign-in. Once complete, tokens are saved to ~/.config/mcp-meet/tokens.json and you're good to go.

Usage

As an MCP Server

Start the server using stdio transport (for AI assistant integration):

node dist/index.js

Or in development:

pnpm dev

Your MCP client (like Claude Desktop) can then call the available tools.

License

MIT

Contributing

Issues and pull requests welcome!