Skip to Content

Google Slides

Google Slides icon
Arcade Optimized

Arcade.dev LLM tools for Google Slides

Author:Arcade
Version:1.3.2
Auth:User authorization via the Google auth provider
8tools
PyPI VersionPython VersionsWheel StatusDownloadsLicense

Arcade.dev provides a powerful toolkit for Google Slides, enabling seamless integration and manipulation of presentations within Google Drive. This toolkit allows developers to automate various tasks related to presentation management, enhancing productivity and collaboration.

Capabilities

  • Generate, modify, and comment on slides within presentations.
  • Create new Google Slides presentations with specified content.
  • Retrieve presentations and convert them to markdown format.
  • Search for and list presentations in the user's Google Drive.
  • Access comprehensive user profile information and permissions.

OAuth

  • Provider: Google
  • Scopes: [https://www.googleapis.com/auth/drive.file, https://www.googleapis.com/auth/userinfo.email, https://www.googleapis.com/auth/userinfo.profile]

Available tools(8)

8 of 8
Tool nameDescriptionSecrets
Comment on a specific slide by its index in a Google Slides presentation.
Create a new Google Slides presentation The first slide will be populated with the specified title and subtitle.
Create a new slide at the end of the specified presentation
Generate a Google File Picker URL for user-driven file selection and authorization. This tool generates a URL that directs the end-user to a Google File Picker interface where where they can select or upload Google Drive files. Users can grant permission to access their Drive files, providing a secure and authorized way to interact with their files. This is particularly useful when prior tools (e.g., those accessing or modifying Google Docs, Google Sheets, etc.) encountered failures due to file non-existence (Requested entity was not found) or permission errors. Once the user completes the file picker flow, the prior tool can be retried. Suggest this tool to users when they are surprised or confused that the file they are searching for or attempting to access cannot be found.
Get the specified Google Slides presentation and convert it to markdown. Only retrieves the text content of the presentation and formats it as markdown.
List all comments on the specified Google Slides presentation.
Searches for presentations in the user's Google Drive. Excludes presentations that are in the trash.
Get comprehensive user profile and Google Slides environment information. This tool provides detailed information about the authenticated user including their name, email, profile picture, Google Slides access permissions, and other important profile details from Google services.

Selected tools

No tools selected.

Click "Show all tools" to add tools.

Requirements

Select tools to see requirements

#

GoogleSlides.CommentOnPresentation

Comment on a specific slide by its index in a Google Slides presentation.

Parameters

ParameterTypeReq.Description
presentation_idstringRequiredThe ID of the presentation to comment on
comment_textstringRequiredThe comment to add to the slide

Requirements

No secrets required

Output

Type:jsonThe comment's ID, presentationId, and slideNumber in a dictionary
#

GoogleSlides.CreatePresentation

Create a new Google Slides presentation The first slide will be populated with the specified title and subtitle.

Parameters

ParameterTypeReq.Description
titlestringRequiredThe title of the presentation to create
subtitlestringOptionalThe subtitle of the presentation to create

Requirements

No secrets required

Output

Type:jsonThe created presentation's title, presentationId, and presentationUrl
#

GoogleSlides.CreateSlide

Create a new slide at the end of the specified presentation

Parameters

ParameterTypeReq.Description
presentation_idstringRequiredThe ID of the presentation to create the slide in
slide_titlestringRequiredThe title of the slide to create
slide_bodystringRequiredThe body (text) of the slide to create

Requirements

No secrets required

Output

Type:jsonA URL to the created slide
#

GoogleSlides.GenerateGoogleFilePickerUrl

Generate a Google File Picker URL for user-driven file selection and authorization. This tool generates a URL that directs the end-user to a Google File Picker interface where where they can select or upload Google Drive files. Users can grant permission to access their Drive files, providing a secure and authorized way to interact with their files. This is particularly useful when prior tools (e.g., those accessing or modifying Google Docs, Google Sheets, etc.) encountered failures due to file non-existence (Requested entity was not found) or permission errors. Once the user completes the file picker flow, the prior tool can be retried. Suggest this tool to users when they are surprised or confused that the file they are searching for or attempting to access cannot be found.

Parameters

No parameters required.

Requirements

No secrets required

Output

Type:jsonGoogle File Picker URL for user file selection and permission granting
#

GoogleSlides.GetPresentationAsMarkdown

Get the specified Google Slides presentation and convert it to markdown. Only retrieves the text content of the presentation and formats it as markdown.

Parameters

ParameterTypeReq.Description
presentation_idstringRequiredThe ID of the presentation to retrieve.

Requirements

No secrets required

Output

Type:stringThe presentation textual content as markdown
#

GoogleSlides.ListPresentationComments

List all comments on the specified Google Slides presentation.

Parameters

ParameterTypeReq.Description
presentation_idstringRequiredThe ID of the presentation to list comments for
include_deletedbooleanOptionalWhether to include deleted comments in the results. Defaults to False.

Requirements

No secrets required

Output

Type:jsonA dictionary containing the comments
#

GoogleSlides.SearchPresentations

Searches for presentations in the user's Google Drive. Excludes presentations that are in the trash.

Parameters

ParameterTypeReq.Description
presentation_containsarray<string>OptionalKeywords or phrases that must be in the presentation title or content. Provide a list of keywords or phrases if needed.
presentation_not_containsarray<string>OptionalKeywords or phrases that must NOT be in the presentation title or content. Provide a list of keywords or phrases if needed.
search_only_in_shared_drive_idstringOptionalThe ID of the shared drive to restrict the search to. If provided, the search will only return presentations from this drive. Defaults to None, which searches across all drives.
include_shared_drivesbooleanOptionalWhether to include presentations from shared drives. Defaults to False (searches only in the user's 'My Drive').
include_organization_domain_presentationsbooleanOptionalWhether to include presentations from the organization's domain. This is applicable to admin users who have permissions to view organization-wide presentations in a Google Workspace account. Defaults to False.
order_byarray<string>OptionalSort order. Defaults to listing the most recently modified presentations first. If presentation_contains or presentation_not_contains is provided, then the order_by will be ignored.
createdTimecreatedTime descfolderfolder descmodifiedByMeTimemodifiedByMeTime descmodifiedTimemodifiedTime descnamename descname_naturalname_natural descquotaBytesUsedquotaBytesUsed descrecencyrecency descsharedWithMeTimesharedWithMeTime descstarredstarred descviewedByMeTimeviewedByMeTime desc
limitintegerOptionalThe number of presentations to list
pagination_tokenstringOptionalThe pagination token to continue a previous request

Requirements

No secrets required

Output

Type:jsonA dictionary containing 'presentations_count' (number of presentations returned) and 'presentations' (a list of presentation details including 'kind', 'mimeType', 'id', and 'name' for each presentation)
#

GoogleSlides.WhoAmI

Get comprehensive user profile and Google Slides environment information. This tool provides detailed information about the authenticated user including their name, email, profile picture, Google Slides access permissions, and other important profile details from Google services.

Parameters

No parameters required.

Requirements

No secrets required

Output

Type:jsonGet comprehensive user profile and Google Slides environment information.
Last updated on