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

@presto-ai/google-workspace-mcp

v1.0.12

Published

Google Workspace MCP Server - npm distribution

Readme

@presto-ai/google-workspace-mcp

npm version License: Apache-2.0

NPM-distributable Google Workspace MCP server for Claude Desktop, Claude Code CLI, and other MCP clients. Interact with Gmail, Calendar, Drive, Docs, Sheets, Chat, and more through Claude.

Based on gemini-cli-extensions/workspace.

Quick Start

Configure Your MCP Client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "google-workspace": {
      "command": "npx",
      "args": ["-y", "@presto-ai/google-workspace-mcp"]
    }
  }
}

Then restart Claude Desktop. The MCP server will prompt for authentication on first use.

Claude Code CLI

Edit ~/.claude/config.json:

{
  "mcpServers": {
    "google-workspace": {
      "command": "npx",
      "args": ["-y", "@presto-ai/google-workspace-mcp"]
    }
  }
}

Supported Services

  • Gmail: Search emails, read messages, send emails, create/manage drafts
  • Google Calendar: List calendars, create/read/update/delete events, find free time
  • Google Drive: Search files, download documents, access metadata
  • Google Docs: Read document content, create documents, insert/replace text
  • Google Sheets: Read spreadsheet ranges, get metadata, append data
  • Google Chat: Send messages, read threads, create spaces
  • Google Slides: Read presentations, extract text, get metadata
  • Google People: Get user profiles, retrieve contact information

Configuration

Environment Variables

# Override credential storage location (optional)
export GOOGLE_WORKSPACE_MCP_HOME=/custom/path/for/credentials

Credential Storage

Credentials are stored in platform-standard locations:

| Platform | Location | |----------|----------| | macOS | ~/.config/google-workspace-mcp/ | | Linux | ~/.config/google-workspace-mcp/ | | Windows | %APPDATA%/google-workspace-mcp/ |

Requirements

  • Node.js 18 or higher
  • Active Google Account with Google Workspace access
  • Web browser for OAuth authentication

Troubleshooting

Token refresh errors

Delete the credentials and restart:

rm -rf ~/.config/google-workspace-mcp  # macOS/Linux
npx @presto-ai/google-workspace-mcp    # Will prompt for re-auth

"libsecret" errors on Linux

sudo apt-get install libsecret-1-dev  # Debian/Ubuntu
sudo dnf install libsecret-devel      # Fedora/RHEL

License

Apache-2.0 - See LICENSE