What can you do with it?
Google Cloud Storage allows you to manage cloud storage objects programmatically. You can list all buckets in a project, upload files to specific buckets, download objects, manage object metadata, and organize your cloud storage resources. This integration is perfect for backup solutions, file storage workflows, and cloud-based content management.How to use it?
Basic Command Structure
Parameters
Required:action
- The operation to perform on Google Cloud Storage
Tools
List Buckets
List all storage buckets in a Google Cloud project Parameters:project-name
(required) - The Google Cloud project name
Upload File
Upload a file to a specific bucket Parameters:bucket-name
(required) - Name of the target bucketfile-name
(required) - Name for the file in the bucketfile-content
(required) - Content of the file to upload
List Objects
List all objects in a bucket Parameters:bucket-name
(required) - Name of the bucket to list objects fromprefix
(optional) - Filter results to objects with names that begin with this prefixmax-results
(optional) - Maximum number of items to return
Download Object
Download an object from a bucket Parameters:bucket-name
(required) - Name of the bucket containing the objectobject-name
(required) - Name of the object to download
Delete Object
Delete an object from a bucket Parameters:bucket-name
(required) - Name of the bucket containing the objectobject-name
(required) - Name of the object to delete
Get Object Metadata
Get metadata information about an object Parameters:bucket-name
(required) - Name of the bucket containing the objectobject-name
(required) - Name of the object