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

@whizzy/mcp-sheets

v0.1.1

Published

MCP server for Google Sheets — read, write, and manage spreadsheets from any MCP client

Readme

@whizzy/mcp-sheets

MCP server for Google Sheets. Read, write, search, and manage spreadsheets from Claude (or any MCP client).

Setup

1. Google Cloud

  1. Create a project in Google Cloud Console
  2. Enable the Google Sheets API and Google Drive API
  3. Create a Service Account and download the JSON key
  4. Share your target Drive folder with the service account email

2. Install

npm install @whizzy/mcp-sheets

Or run directly with npx:

npx @whizzy/mcp-sheets

3. Connect to Claude

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "sheets": {
      "command": "npx",
      "args": ["-y", "@whizzy/mcp-sheets"],
      "env": {
        "SERVICE_ACCOUNT_PATH": "/path/to/service-account-key.json",
        "DRIVE_FOLDER_ID": "your-folder-id"
      }
    }
  }
}

Or for Claude Code (.claude/settings.json):

{
  "mcpServers": {
    "sheets": {
      "command": "npx",
      "args": ["-y", "@whizzy/mcp-sheets"],
      "env": {
        "SERVICE_ACCOUNT_PATH": "/path/to/service-account-key.json",
        "DRIVE_FOLDER_ID": "your-folder-id"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |---|---|---| | SERVICE_ACCOUNT_PATH | Yes* | Path to service account JSON key file | | DRIVE_FOLDER_ID | No | Default Google Drive folder ID | | CREDENTIALS_CONFIG | No | Base64-encoded service account JSON (alternative to file) | | CREDENTIALS_PATH | No | Path to OAuth credentials file (default: credentials.json) | | TOKEN_PATH | No | Path to OAuth token file (default: token.json) | | ENABLED_TOOLS | No | Comma-separated list of tools to enable (default: all) |

*One of SERVICE_ACCOUNT_PATH, CREDENTIALS_CONFIG, or OAuth credentials is required.

Tools

Read

  • get_sheet_data - Get data from a sheet (values or full grid data with formatting)
  • get_sheet_formulas - Get formulas from a sheet
  • list_sheets - List all sheet tabs in a spreadsheet
  • get_multiple_sheet_data - Get data from multiple ranges across spreadsheets
  • get_multiple_spreadsheet_summary - Get headers and first rows from multiple spreadsheets
  • find_in_spreadsheet - Search for cells containing a value

Write

  • update_cells - Update cells in a range
  • batch_update_cells - Update multiple ranges at once
  • add_rows - Insert rows into a sheet
  • add_columns - Insert columns into a sheet
  • copy_sheet - Copy a sheet between spreadsheets
  • rename_sheet - Rename a sheet tab
  • batch_update - Execute raw Sheets API batchUpdate requests

Create / Manage

  • create_spreadsheet - Create a new spreadsheet
  • create_sheet - Add a new sheet tab

Drive

  • list_spreadsheets - List spreadsheets in a folder
  • share_spreadsheet - Share with users (reader/commenter/writer)
  • list_folders - List folders in Drive
  • search_spreadsheets - Search spreadsheets by name or content

Charts

  • add_chart - Add a chart (column, bar, line, area, pie, scatter, combo, histogram)

Tool Filtering

To reduce context window usage, enable only the tools you need:

# Via environment variable
ENABLED_TOOLS="get_sheet_data,update_cells,list_sheets" npx @whizzy/mcp-sheets

# Via CLI argument
npx @whizzy/mcp-sheets --include-tools get_sheet_data,update_cells,list_sheets

Development

npm install
npm run build
npm start

Publishing

npm publish --access public

License

MIT