Back to Browse

Google Slides MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for the Google Slides API: presentations, slides, text, shapes, images and tables.

About

MCP server for the Google Slides API: presentations, slides, text, shapes, images and tables.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (16/16 approved).

3 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Google OAuth2 client id (refresh-token flow).Optional

Environment variable: GOOGLE_SLIDES_CLIENT_ID

Google OAuth2 client secret (refresh-token flow). Treat it as a secret.Required

Environment variable: GOOGLE_SLIDES_CLIENT_SECRET

Google OAuth2 refresh token, exchanged for access tokens automatically. Treat it as a secret.Required

Environment variable: GOOGLE_SLIDES_REFRESH_TOKEN

Static OAuth2 access token (~1h lifetime) — alternative to the refresh-token trio, mostly for testing.Required

Environment variable: GOOGLE_SLIDES_ACCESS_TOKEN

Slides API root override.Optional

Environment variable: GOOGLE_SLIDES_API_BASE

Drive API root override (used internally for comments, export and image upload).Optional

Environment variable: GOOGLE_SLIDES_DRIVE_API_BASE

Per-request timeout in milliseconds.Optional

Environment variable: GOOGLE_SLIDES_TIMEOUT_MS

Retries on transient errors (429 always; 5xx/network for reads).Optional

Environment variable: GOOGLE_SLIDES_MAX_RETRIES

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-a1-x-tech-mcp-google-slides": {
      "env": {
        "GOOGLE_SLIDES_API_BASE": "your-google-slides-api-base-here",
        "GOOGLE_SLIDES_CLIENT_ID": "your-google-slides-client-id-here",
        "GOOGLE_SLIDES_TIMEOUT_MS": "your-google-slides-timeout-ms-here",
        "GOOGLE_SLIDES_MAX_RETRIES": "your-google-slides-max-retries-here",
        "GOOGLE_SLIDES_ACCESS_TOKEN": "your-google-slides-access-token-here",
        "GOOGLE_SLIDES_CLIENT_SECRET": "your-google-slides-client-secret-here",
        "GOOGLE_SLIDES_REFRESH_TOKEN": "your-google-slides-refresh-token-here",
        "GOOGLE_SLIDES_DRIVE_API_BASE": "your-google-slides-drive-api-base-here"
      },
      "args": [
        "-y",
        "@a1-x-tech/mcp-google-slides"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Google Slides MCP

English | Русский

npm CI Glama License: MIT

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

You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Slides API enabled.

  1. Prepare Google OAuth access.
  2. Add the server to your AI app.
  3. Ask the read-only question above.

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

Codex MCP documentation

claude mcp add \
  --env GOOGLE_SLIDES_CLIENT_ID=your_client_id \
  --env GOOGLE_SLIDES_CLIENT_SECRET=your_client_secret \
  --env GOOGLE_SLIDES_REFRESH_TOKEN=your_refresh_token \
  --transport stdio --scope user google-slides \
  -- npx -y @a1-x-tech/mcp-google-slides@latest
claude mcp list

Claude Code MCP documentation

The current official path is Settings → Extensions. For a custom desktop extension, open Advanced settings → Extension Developer → Install Extension…, select a .mcpb file and follow the prompts.

This repository currently publishes an npm stdio package and does not contain a .mcpb bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:

{
  "mcpServers": {
    "google-slides": {
      "command": "npx",
      "args": ["-y", "@a1-x-tech/mcp-google-slides@latest"],
      "env": {
        "GOOGLE_SLIDES_CLIENT_ID": "your_client_id",
        "GOOGLE_SLIDES_CLIENT_SECRET": "your_client_secret",
        "GOOGLE_SLIDES_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

In those builds, save it to ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.

Claude Desktop MCP documentation

Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:

{
  "mcpServers": {
    "google-slides": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@a1-x-tech/mcp-google-slides@latest"],
      "env": {
        "GOOGLE_SLIDES_CLIENT_ID": "your_client_id",
        "GOOGLE_SLIDES_CLIENT_SECRET": "your_client_secret",
        "GOOGLE_SLIDES_REFRESH_TOKEN": "your_refresh_token"
      }
    }
  }
}

Cursor MCP documentation

Run MCP: Open User Configuration and add:

{
  "servers": {
    "google-slides": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@a1-x-tech/mcp-google-slides@latest"],
      "env": {
        "GOOGLE_SLIDES_CLIENT_ID": "${input:slides_client_id}",
        "GOOGLE_SLIDES_CLIENT_SECRET": "${input:slides_client_secret}",
        "GOOGLE_SLIDES_REFRESH_TOKEN": "${input:slides_refresh_token}"
      }
    }
  },
  "inputs": [
    { "type": "promptString", "id": "slides_client_id", "description": "Google OAuth client ID" },
    { "type": "promptString", "id": "slides_client_secret", "description": "Google OAuth client secret", "password": true },
    { "type": "promptString", "id": "slides_refresh_token", "description": "Google OAuth refresh token", "password": true }
  ]
}

Check it with MCP: List Servers.

VS Code MCP documentation

What you can ask it to do

Inspect a deck

  • List the slides of this presentation and what's on each one.
  • Read the speaker notes for slide 5.
  • Render a thumbnail of the title slide.

Build and rearrange slides

  • Create a presentation for the Q3 review.
  • Add a “Roadmap” slide after the agenda, duplicate the template slide, move the summary to the end.
  • Insert an image from a URL or a local file, add a 4×3 table, create a text box or a rounded rectangle with its caption.

Write and polish text

  • Put this text into the title placeholder and make the deadline bold and red.
  • Replace “Q2” with “Q3” across the whole deck.
  • Rewrite the speaker notes of slide 3 to be shorter.

Review and hand off

  • List the open comment threads and reply to the first one, resolving it.
  • Delete the draft slide we no longer need.
  • Export the deck as PDF or PPTX for someone without Google access.

How a presentation changes

  1. create_presentation creates a deck with one title slide; only the title is honored at creation.
  2. Everything inside a deck — slides, shapes, images, tables — is addressed by object ids. list_slides is the compact inventory to start from before any edit.
  3. Edits go through the API's atomic batchUpdate: one invalid request voids the whole batch, so nothing is half-applied.
  4. Tool inputs are in points; the API stores EMU (1 pt = 12700 EMU). The server converts both ways.

The Slides API cannot delete, rename or share the presentation file — those are Drive file operations outside this server's scope. It cannot import a theme (only instantiate layouts the deck already has) and cannot anchor a new comment to a specific slide. Export is capped at 10 MB, and thumbnail URLs expire after about 30 minutes.

What can change

OperationWhat happensConfirmation boundary
Inspect a deck, page, notes or comments; render a thumbnail; export a fileReads data, writes only local filesNo change
Create a presentationAdds a new deck to your Google accountChanges Google Slides
Add, duplicate or move slides; create shapes, images, tablesAdds or rearranges deck contentChanges a deck
Set or style text, replace an image, transform an element, edit speaker notes or table structureOverwrites existing contentChanges a deck
Find & replace across the deckChanges every match at onceChanges a deck broadly
Delete a slide, element or comment threadRemoves content with no undo through the APIDestructive
Raw batchUpdate or raw API requestCan call API methods without a dedicated toolPotentially destructive

The AI client controls confirmation prompts. The server marks reads, writes and destructive tools so the client can distinguish an inspection from a live change.

Getting access

Google Slides requires OAuth 2.0; an API key is not enough.

  1. Create or select a Google Cloud project and enable Google Slides API. Enable Google Drive API too if you want comments, export or local-image upload.

  2. Configure the OAuth consent screen and create a Desktop app OAuth client.

  3. Authorize the Google account that owns or can edit the presentations. The OAuth 2.0 Playground can obtain the refresh token when Use your own OAuth credentials is enabled.

  4. Request the scopes:

    https://www.googleapis.com/auth/presentations
    https://www.googleapis.com/auth/drive.file
    

    presentations covers all Slides reads and writes. drive.file covers local-image upload plus comments and export on decks created through this app; request the broader https://www.googleapis.com/auth/drive instead when you need comments or export on arbitrary presentations.

Testing-mode OAuth refresh tokens can expire after seven days. Publish the OAuth app, or use an Internal app in a Workspace domain, when you need long-lived access. Treat the client secret and refresh token as passwords.

Configuration

VariableRequiredDescription
GOOGLE_SLIDES_CLIENT_IDYes*OAuth client ID.
GOOGLE_SLIDES_CLIENT_SECRETYes*OAuth client secret.
GOOGLE_SLIDES_REFRESH_TOKENYes*OAuth refresh token.
GOOGLE_SLIDES_ACCESS_TOKENYes*Short-lived (~1 h) alternative to the OAuth trio.
GOOGLE_SLIDES_API_BASENoGoogle Slides API base URL override.
GOOGLE_SLIDES_DRIVE_API_BASENoGoogle Drive API base URL override (internal dependency: comments, export, image upload).
GOOGLE_SLIDES_TIMEOUT_MSNoPer-request timeout; default 60000 ms.
GOOGLE_SLIDES_MAX_RETRIESNoTemporary-error retries; default 3.

* Provide either the OAuth trio or an access token.

Data, limits and background work

  • Requests go to Google Slides. The local server refreshes Google OAuth tokens and calls the Slides API; comments, export and local-image upload ride the Drive API, scoped to the one presentation file. Its anonymous telemetry contains an installation ID, package version, AI client and platform versions, and tool names — never OAuth tokens, presentation content, tool arguments or prompts. Set ASKADS_TELEMETRY=0 to opt out.
  • Google applies rate limits. On 429, the server uses backoff; reads also retry after network and 5xx errors, while writes are not replayed after an uncertain failure. Thumbnails count against a more expensive read quota.
  • There is no background polling. The server runs only when called. Nothing watches a deck between calls; if your AI app supports scheduled tasks, it can check a presentation periodically.

Technical documentation

Support

Found a bug or need a scenario? Create an issue or write in Telegram.

Reviews

No reviews yet

Be the first to review this server!