Mcp Google Slides
MCP server for the Google Slides API: presentations, slides, text, shapes, images and tables.
- Transport
- Not stated
- Package
- —
- Registry id
- io.github.A1-x-Tech/mcp-google-slides
No install snippet on purpose. A working MCP config is a command, its arguments and an environment block — the last two are where API keys live, so this catalogue never stores them and cannot publish them. Follow the link above for the authors' own instructions.
English | Русский
A1 Google Slides MCP lets an AI app build and edit Google Slides presentations in plain language. Draft a deck, add and rearrange slides, write and style text, place shapes, images and tables, keep speaker notes, review comments and export the result as PDF or PPTX.
It uses the Google Slides API with your Google account. Everything inside a deck is addressed by explicit object ids, and it makes the limits of the Slides API explicit instead of implying that every presentation task is possible.
- 26 tools. Inspect decks and pages, edit slides, text, shapes, images and tables, manage speaker notes and comments, render thumbnails and export files.
- Edits are atomic. Changes ride the API's
batchUpdate: one invalid request voids the whole batch, so a deck is never left half-edited. - Your Drive stays out of reach. Comments, export and local-image upload use the Drive API strictly for the one presentation file — there are no tools to list, share, rename or delete Drive files.
- Minimal Google scopes. It needs
presentations; Drive scopes are required only for local images, comments and export.
Start with a read-only question:
Show me the slides in the quarterly report deck and what's on each of them.
Connect the server · Explore use cases · Open technical documentation
See it work in a minute
You: List the slides of the Q3 review deck and what's on each one.
Assistant: Shows a compact inventory: every slide's position, layout and elements with their visible text. Nothing changes.
You: Prepare a new slide after the agenda titled “Roadmap”, with the key dates in the body.
Assistant: Shows the target deck, the layout and the proposed text, then asks for confirmation before adding it.
You: Confirm.
Assistant: Adds the slide and fills its placeholders. It does not touch the other slides.
Contents
- Quick start
- What you can ask it to do
- How a presentation changes
- What can change
- Getting access
- Configuration
- Data, limits and background work
- Technical documentation
- Support
Quick start
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Slides API enabled.
- Prepare Google OAuth access.
- Add the server to your AI app.
- Ask the read-only question above.
Codex
In the app: open Settings → MCP servers, select Add server, choose STDIO, enter the command npx -y @a1-x-tech/mcp-google-slides@latest and environment variables GOOGLE_SLIDES_CLIENT_ID, GOOGLE_SLIDES_CLIENT_SECRET, GOOGLE_SLIDES_REFRESH_TOKEN, then select Save and Restart.
From the command line:
codex mcp add google-slides \
--env GOOGLE_SLIDES_CLIENT_ID=your_client_id \
--env GOOGLE_SLIDES_CLIENT_SECRET=your_client_secret \
--env GOOGLE_SLIDES_REFRESH_TOKEN=your_refresh_token \
-- npx -y @a1-x-tech/mcp-google-slides@latest
codex mcp list
From the project's README.