Skip to main content
Glama
tom275275

Google Workspace MCP Server

by tom275275

get_page_thumbnail

Generate a thumbnail URL for a specific slide in a Google Slides presentation by providing user email, presentation ID, and page object ID.

Instructions

Generate a thumbnail URL for a specific page (slide) in a presentation.

Args: user_google_email (str): The user's Google email address. Required. presentation_id (str): The ID of the presentation. page_object_id (str): The object ID of the page/slide. thumbnail_size (str): Size of thumbnail ("LARGE", "MEDIUM", "SMALL"). Defaults to "MEDIUM".

Returns: str: URL to the generated thumbnail image.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_object_idYes
thumbnail_sizeNoMEDIUM
presentation_idYes
user_google_emailYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.14.3

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose the return type and the allowed thumbnail_size values, which is helpful. However, it does not explicitly state whether this is a read-only operation, whether authentication via user_google_email is implicitly required beyond being a parameter, or what happens on invalid input.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is tightly structured: a one-sentence summary followed by a clean Args/Returns block. Every line adds distinct information including types, requiredness, allowed values, default, and return type, with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple thumbnail URL generation tool, all parameters and the return value are covered, and the default behavior for thumbnail_size is explicit. It is slightly incomplete in not mentioning authorization context or how to obtain a valid page_object_id, but these are not blocking for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides no parameter descriptions, but the description fully compensates: it documents every parameter with a plain-language explanation, marks user_google_email as required, and gives the valid values and default for thumbnail_size. This is exactly the value a description should add.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'Generate a thumbnail URL for a specific page (slide) in a presentation.' This is not a tautology and clearly distinguishes the tool from siblings like get_page or get_presentation, which fetch page content rather than thumbnail URLs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use case is implied by the purpose: use this when a thumbnail image URL for a slide is needed. However, the description does not explicitly say when to use this tool versus alternatives, mention prerequisites such as prior authentication, or point to sibling tools for resolving page_object_id.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools