Google Slides MCP Server

Generate and revise entire decks without opening the Slides editor.

The Slides service is built around the way presentations actually get made by agents: create_presentation starts the deck, batch_update_presentation applies a whole set of text, layout, and styling changes in one request, and get_page targets an individual slide for surgical edits.

get_page_thumbnail is the underrated tool here — it renders a slide to an image, so an assistant (or the human reviewing its work) can see what the deck looks like rather than reasoning blind about layout.

What you can ask

  • “Turn this outline into a ten-slide deck with a title slide and section headers”
  • “Update the footer and confidentiality notice across the entire presentation”
  • “Render thumbnails of the board deck so I can check the flow before the meeting”

All 7 Google Slides MCP tools

Expand any tool for its full parameter list. Tiers control how many tools the server registers: start lean with --tool-tier core and step up to extended or complete when a workflow needs more.

create_presentation Core Create presentations. 1
ParameterDescription
title The title for the new presentation. Defaults to "Untitled Presentation".
get_presentation Core Retrieve presentation details. 3
ParameterDescription
presentation_id requiredThe ID of the presentation to retrieve.
include_speaker_notes Also report each slide's speaker notes and its notes shape ID (needed to edit notes via batch_update_presentation). Defaults to False.
include_geometry Also list each slide's elements with their placement: transform (translate, plus scale/shear when not identity) and intrinsic size, in raw EMU. Set this when adding slides to an existing deck so new elements can match its established margins. Defaults to False.
batch_update_presentation Extended Apply multiple slide updates in one request. 2
ParameterDescription
presentation_id requiredThe ID of the presentation to update.
requests requiredList of update requests to apply.
get_page Extended Retrieve a specific page/slide. 3
ParameterDescription
presentation_id requiredThe ID of the presentation.
page_object_id requiredThe object ID of the page/slide to retrieve.
include_geometry Also report each element's placement: transform (translate, plus scale/shear when not identity) and intrinsic size, in raw EMU. This is the only way to discover an existing deck's margins, gutters, and content area before adding elements. Defaults to False.
get_page_thumbnail Extended Generate slide thumbnails. 3
ParameterDescription
presentation_id requiredThe ID of the presentation.
page_object_id requiredThe object ID of the page/slide.
thumbnail_size Size of thumbnail ("LARGE", "MEDIUM", "SMALL"). Defaults to "MEDIUM".
list_presentation_comments Complete List all presentation comments.
manage_presentation_comment Complete Create, reply, and resolve presentation comments.

Every service in one reference: full API documentation →

OAuth scopes

The server requests only the scopes for the services you enable. In read-only mode it requests just the readonly variants and skips registering write tools entirely.

  • presentations.readonly read decks and render thumbnails
  • presentations create and edit presentations

Google Slides MCP questions

Can an AI actually verify what a slide looks like?
Yes — get_page_thumbnail renders any slide to an image. Multimodal assistants can inspect the rendered slide and fix overflowing text or broken layouts instead of guessing from the JSON structure.
How are bulk edits handled — one request per change?
No. batch_update_presentation accepts many operations in a single request, the same pattern the Slides API itself uses, so restyling a whole deck is one round trip rather than fifty.
Can it participate in deck review?
The Complete tier adds comment tools: list_presentation_comments to read feedback and manage_presentation_comment to reply or resolve, so an agent can close the loop on review notes it has addressed.