Skip to Content
ResourcesIntegrationsProductivity & DocsGoogle Slides

Google Slides

Service domainPRESENTATIONS
Google Slides icon
Arcade Optimized

Arcade.dev LLM tools for Google Slides

Author:Arcade
Version:4.1.1
Auth:User authorization via the Google auth provider
10tools
10require secrets

Google Slides Toolkit

The Google Slides toolkit connects Arcade to Google Slides (and Drive) so LLMs can programmatically create, read, edit, comment on, and search presentations on behalf of a user.

Capabilities

  • Deck creation & editing: Create presentations from scratch or from branded templates, apply atomic batches of slide/element operations (add, delete, reorder, duplicate, restyle, insert/replace text, set speaker notes) in a single call.
  • Read & snapshot: Retrieve a full addressable snapshot of a deck — object IDs, placeholder types, layout/master inventory, text, and speaker notes — to drive subsequent edits.
  • Visual preview: Render any slide to a PNG thumbnail (content URL or base64 data URI) to verify layout, branding, and overflow before sharing.
  • Comments & lifecycle: Add top-level comments or threaded replies, list all comments/replies (paginated, newest-first), and resolve or reopen comment threads.
  • Search & discovery: Full-text search across a user's Drive presentations (matches title and body); paginated with continuation hints.
  • File access & identity: Generate a Google Drive inline file picker URL to request per-file access grants when a presentation is inaccessible, and retrieve the connected account's profile.

OAuth

This toolkit uses OAuth 2.0 with Google as the identity and authorization provider. See the Arcade Google auth provider docs for setup details, required scopes, and configuration.

Secrets

  • ENABLE_GOOGLE_DRIVE_INLINE_PICKER_URL — Controls whether the GenerateGoogleFilePickerUrl tool is active. This is not a credential from Google; it is an Arcade-side configuration secret that enables the inline Drive file picker feature. Set it to a truthy value in your Arcade environment to allow the tool to generate picker URLs for per-file access grants. If absent or falsy, the tool reports status "unavailable" and no picker URL is generated. Obtain or set this value through your Arcade secrets dashboard.

For general guidance on defining and managing secrets in Arcade tools, see the Arcade tool secrets docs.

Available tools(10)

10 of 10 tools
Operations
Behavior
Tool nameDescriptionSecrets
Add a comment to a presentation, or reply within an existing comment thread. Comments are file-level, not anchored to a slide; to reference a slide, name it in the text. Pass reply_to_comment_id to post within that thread instead of starting a new comment.
1
Create a deck or apply a batch of edits to one, returning created object ids, replace counts, and a fresh addressable snapshot. Use this single tool for all deck construction and editing: add, delete, or restyle slides and elements, insert and replace text, and brand a deck in one batch. Reorder slides with an updateSlidesPosition request; duplicate a slide or element with a duplicateObject request. To set speaker notes, insertText into a slide's notes_object_id (surfaced per slide in the snapshot). To add a slide into a specific branded layout, first read the deck and consult the snapshot's layout inventory: each layout reports its placeholders (type, index, and object id), so you can pick a layout that already carries the title/body/other placeholders you intend to fill rather than guessing which layout holds what, and address a specific placeholder in placeholderIdMappings (by {type, index} or by layoutPlaceholderObjectId) even when a layout repeats a type. Read the snapshot to discover the object ids later edits target. The batch is atomic: one invalid request rejects the whole batch, so target object ids that exist in the snapshot. Object ids you assign to new objects are validated before the batch is sent.
1
Derive a new on-brand deck from an existing branded deck, preserving its masters, layouts, and theme, then optionally filling tokens. Use this instead of building from scratch when the user wants a deck in their company template; the new deck inherits the source's branding.
1
Generate a URL where the user grants this app access to specific Drive files. Check `status` first. "unavailable" is not an error: either this app already reaches every presentation the connected account can open, so there is no per-file grant to request, or the picker is not configured here. Either way `reason` explains it, no URL exists, and a presentation that could not be read is one the account itself cannot open. Do not retry it. On "available", use this when a prior tool reported a file was not found or access was denied and the user expects the file to exist; after the user completes the picker, retry the prior tool. Opens Google's first-party Drive picker, not a sign-in prompt.
1
Return an addressable snapshot of a deck: slide and element object ids, placeholder types, text, speaker notes, and the layout and master inventory. This is the read side of the read-edit loop: the object ids it returns are the addresses create_or_edit_presentation targets. Each layout in the inventory reports its placeholders with type, index, and object id, the identity a createSlide placeholderIdMappings entry needs (by {type, index} or by layoutPlaceholderObjectId), even when a layout repeats a placeholder type. What this response leaves out is reported in words by next_step, which is empty only when nothing was left out: read it before answering anything about slides it does not contain.
1
Render one slide to a PNG. By default this returns a short-lived content URL and pixel size. Set include_image to get the PNG as a data URI so you can visually confirm layout, overflow, and branding before sharing. Use this after creating or editing a slide when you need a preview, not when you only need object ids or text. data_uri is omitted unless include_image is true; it is a PNG in the form data:image/png;base64,... Prefer SMALL or MEDIUM when including the image; LARGE occupies more of the context window.
1
List a page of comments and their replies on a presentation, newest first.
1
Close (resolve) or reopen a comment thread on a presentation. Posts an action reply on the thread, so the lifecycle change is attributed to the connected account; the thread's existing comments and replies are preserved.
1
Search the user's Drive for presentations, newest first by default. Keyword matching is full-text: a keyword matches a deck's body content as well as its title, so a deck can match on words that never appear in its title. A keyword search that matches nothing returns an empty list (not an error). An empty list is only a definitive no-match when next_step is empty. When next_step is set, the listing was not walked to its end and the pages it did not reach may hold the match, so do not report that no such presentation exists from that response alone.
1
Return the connected Google account's profile (name, email, picture).
1
Last updated on