@@ -52,6 +52,15 @@ Read content from a Google Slides presentation
5252| --------- | ---- | ----------- |
5353| ` slides ` | json | Array of slides with their content |
5454| ` metadata ` | json | Presentation metadata including ID, title, and URL |
55+ | ↳ ` presentationId ` | string | The presentation ID |
56+ | ↳ ` title ` | string | The presentation title |
57+ | ↳ ` pageSize ` | object | Presentation page size |
58+ | ↳ ` width ` | json | Page width as a Dimension object |
59+ | ↳ ` height ` | json | Page height as a Dimension object |
60+ | ↳ ` width ` | json | Page width as a Dimension object |
61+ | ↳ ` height ` | json | Page height as a Dimension object |
62+ | ↳ ` mimeType ` | string | The mime type of the presentation |
63+ | ↳ ` url ` | string | URL to open the presentation |
5564
5665### ` google_slides_write `
5766
@@ -71,6 +80,10 @@ Write or update content in a Google Slides presentation
7180| --------- | ---- | ----------- |
7281| ` updatedContent ` | boolean | Indicates if presentation content was updated successfully |
7382| ` metadata ` | json | Updated presentation metadata including ID, title, and URL |
83+ | ↳ ` presentationId ` | string | The presentation ID |
84+ | ↳ ` title ` | string | The presentation title |
85+ | ↳ ` mimeType ` | string | The mime type of the presentation |
86+ | ↳ ` url ` | string | URL to open the presentation |
7487
7588### ` google_slides_create `
7689
@@ -90,6 +103,10 @@ Create a new Google Slides presentation
90103| Parameter | Type | Description |
91104| --------- | ---- | ----------- |
92105| ` metadata ` | json | Created presentation metadata including ID, title, and URL |
106+ | ↳ ` presentationId ` | string | The presentation ID |
107+ | ↳ ` title ` | string | The presentation title |
108+ | ↳ ` mimeType ` | string | The mime type of the presentation |
109+ | ↳ ` url ` | string | URL to open the presentation |
93110
94111### ` google_slides_replace_all_text `
95112
@@ -111,6 +128,10 @@ Find and replace all occurrences of text throughout a Google Slides presentation
111128| --------- | ---- | ----------- |
112129| ` occurrencesChanged ` | number | Number of text occurrences that were replaced |
113130| ` metadata ` | json | Operation metadata including presentation ID and URL |
131+ | ↳ ` presentationId ` | string | The presentation ID |
132+ | ↳ ` findText ` | string | The text that was searched for |
133+ | ↳ ` replaceText ` | string | The text that replaced the matches |
134+ | ↳ ` url ` | string | URL to open the presentation |
114135
115136### ` google_slides_add_slide `
116137
@@ -131,6 +152,10 @@ Add a new slide to a Google Slides presentation with a specified layout
131152| --------- | ---- | ----------- |
132153| ` slideId ` | string | The object ID of the newly created slide |
133154| ` metadata ` | json | Operation metadata including presentation ID, layout, and URL |
155+ | ↳ ` presentationId ` | string | The presentation ID |
156+ | ↳ ` layout ` | string | The layout used for the new slide |
157+ | ↳ ` insertionIndex ` | number | The zero-based index where the slide was inserted |
158+ | ↳ ` url ` | string | URL to open the presentation |
134159
135160### ` google_slides_add_image `
136161
@@ -154,6 +179,10 @@ Insert an image into a specific slide in a Google Slides presentation
154179| --------- | ---- | ----------- |
155180| ` imageId ` | string | The object ID of the newly created image |
156181| ` metadata ` | json | Operation metadata including presentation ID and image URL |
182+ | ↳ ` presentationId ` | string | The presentation ID |
183+ | ↳ ` pageObjectId ` | string | The page object ID where the image was inserted |
184+ | ↳ ` imageUrl ` | string | The source image URL |
185+ | ↳ ` url ` | string | URL to open the presentation |
157186
158187### ` google_slides_get_thumbnail `
159188
@@ -176,6 +205,10 @@ Generate a thumbnail image of a specific slide in a Google Slides presentation
176205| ` width ` | number | Width of the thumbnail in pixels |
177206| ` height ` | number | Height of the thumbnail in pixels |
178207| ` metadata ` | json | Operation metadata including presentation ID and page object ID |
208+ | ↳ ` presentationId ` | string | The presentation ID |
209+ | ↳ ` pageObjectId ` | string | The page object ID for the thumbnail |
210+ | ↳ ` thumbnailSize ` | string | The requested thumbnail size |
211+ | ↳ ` mimeType ` | string | The thumbnail MIME type |
179212
180213### ` google_slides_get_page `
181214
0 commit comments