@google-cloud/storage-mcp 0.3.3 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/bundle.js +218 -131
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -149,7 +149,7 @@ ones. They will never modify or delete existing data in GCS.
|
|
|
149
149
|
| `list_objects` | Lists objects in a GCS bucket. |
|
|
150
150
|
| `read_object_metadata` | Reads comprehensive metadata for a specific object. |
|
|
151
151
|
| `read_object_content` | Reads the content of a specific object. |
|
|
152
|
-
| `
|
|
152
|
+
| `download_object_safe` | Downloads an object from GCS to a local file. Fails if the destination file already exists. |
|
|
153
153
|
| `write_object_new` | Writes a new object. Fails if the object already exists. |
|
|
154
154
|
| `upload_object_new` | Uploads a file to a new object. Fails if the object already exists. |
|
|
155
155
|
| `copy_object_new` | Copies an object to a new destination. Fails if the destination already exists. |
|
|
@@ -173,6 +173,7 @@ counterparts (e.g., `write_object` is registered instead of `write_object_new`).
|
|
|
173
173
|
| `update_bucket_labels` | **Modifies** labels for a bucket. |
|
|
174
174
|
| `delete_object` | **Deletes** a specific object from a bucket. |
|
|
175
175
|
| `update_object_metadata` | **Modifies** the custom metadata of an existing object. |
|
|
176
|
+
| `download_object` | Downloads an object, **overwriting** the destination file. |
|
|
176
177
|
| `move_object` | **Moves** an object (copies then deletes the original). |
|
|
177
178
|
| `write_object` | Writes an object, **overwriting** it if it already exists. |
|
|
178
179
|
| `upload_object` | Uploads a file, **overwriting** the destination object. |
|