G

Google Slides

Create and edit Google Slides presentations.

·No reviews yet
Repo
Share:

About

Auto-generated

Google Slides is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Google Slides.

What does the Google Slides MCP enable?
The Google Slides MCP allows users to programmatically create and edit Google Slides presentations. It integrates Google Slides functionality directly into an MCP client for automation and workflow enhancement.
How do I install the Google Slides MCP in my client?
Installation typically involves adding the MCP's repository URL (https://github.com/matteoantoci/google-slides-mcp) to your MCP client's settings. Specific steps may vary depending on the client (e.g., Claude Desktop, Cursor, or Cline).
Does the Google Slides MCP require authentication?
Yes, this MCP uses OAuth for authentication. Users will need to authorize their Google account through an OAuth flow to grant the MCP access to their Google Slides data.
What are typical use cases for this Google Slides MCP?
Typical use cases include automating presentation creation from data, updating existing slides with new information, and generating personalized presentations at scale. It's useful for productivity workflows involving repetitive slide generation.
Can I use the Google Slides MCP to export presentations?
The primary functions are creating and editing. Specific export capabilities depend on the tools exposed by the MCP, which are not listed. It's possible the underlying Google Slides API provides export options that the MCP could wrap.
Is there a cost associated with using the Google Slides MCP?
The MCP itself is open-source and community-provided, so there's no direct cost for the MCP. However, usage may be subject to Google's terms and any potential costs associated with the Google Slides API, if applicable.

Install Google Slides

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "google-slides": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-slides"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "google-slides": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-slides"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "google-slides": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-slides"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.