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

@garrettheath4/cloudstorage-mcp

v2.0.1

Published

MCP server for Google Cloud Storage interactions

Readme

Cloud Storage MCP Server

A Model Context Protocol (MCP) server for Google Cloud Storage that enables interactions with Google Cloud Storage buckets and files.

Features

  • List Cloud Storage buckets in a project
  • Get details of a specific bucket
  • List files in a bucket
  • Get details of a specific file
  • Upload files to a bucket
  • Download files from a bucket
  • Delete files from a bucket

Quick Start

npx -y @garrettheath4/cloudstorage-mcp

Authentication

The MCP server supports two authentication methods:

  1. GOOGLE_APPLICATION_CREDENTIALS environment variable (recommended)

    • Set this to the path of a service account JSON key file
    • Works with Docker, cloud environments, and local development
  2. Legacy keys/ directory (for backwards compatibility)

    • Place JSON key files in a keys/ directory next to the package
    • Filename format: keys/{project-id}.json

Ensure the service account has appropriate permissions for Cloud Storage (e.g., Storage Admin or Storage Object Viewer).

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | GOOGLE_CLOUD_PROJECTS | Yes | Comma-separated list of GCP project IDs. The first one is the default. | | GOOGLE_APPLICATION_CREDENTIALS | No | Path to a service account JSON key file. |

Setup

Claude Desktop

Add the following to your claude_desktop_config.json:

"cloudstorage-mcp": {
  "command": "npx",
  "args": ["-y", "@garrettheath4/cloudstorage-mcp"],
  "env": {
    "GOOGLE_CLOUD_PROJECTS": "my-project-id",
    "GOOGLE_APPLICATION_CREDENTIALS": "/path/to/service-account.json"
  }
}

LibreChat (Docker)

  1. Mount your service account key into the container:

    /app/keys/gcp-service-account.json:/path/on/host/gcp-service-account.json
  2. Add the following to your librechat.yaml:

mcpServers:
  google-cloud:
    command: npx
    args:
      - "-y"
      - "@garrettheath4/cloudstorage-mcp"
    customUserVars:
      GOOGLE_CLOUD_PROJECTS:
        title: "Google Cloud Project(s)"
        description: "Comma-separated list of Google Cloud Project IDs"
    env:
      GOOGLE_CLOUD_PROJECTS: "{{GOOGLE_CLOUD_PROJECTS}}"
      GOOGLE_APPLICATION_CREDENTIALS: "/app/keys/gcp-service-account.json"

Available Tools

  • listBuckets: List all Cloud Storage buckets in a project
  • getBucket: Get details of a specific Cloud Storage bucket
  • listFiles: List files in a Cloud Storage bucket
  • getFile: Get details of a specific file in a Cloud Storage bucket
  • uploadFile: Upload a file to a Cloud Storage bucket
  • downloadFile: Download a file from a Cloud Storage bucket
  • deleteFile: Delete a file from a Cloud Storage bucket
  • listProjects: List all configured projects

Example Prompts

List Buckets

List all buckets in my Google Cloud project.

Get Files in a Bucket

Show me all files in the backup-data bucket.

Get File Details

Get details of the file reports/monthly_report.pdf in the data-analysis bucket.

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev