Skip to main content
Glama
conorbronsdon

Google Workspace (GWS) MCP Server

slides_create

Create a new blank Google Slides presentation by specifying a title. Generates an empty deck ready for editing.

Instructions

Create a new blank presentation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesPresentation title

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.4.1

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false and idempotentHint=false, so the mutation behavior is covered. The description adds the 'blank' qualifier, which clarifies the initial content, but provides no additional behavioral details about side effects, return values, or permissions.

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 a single, front-loaded sentence that directly conveys the core action and result with zero filler. Every word earns its place.

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 one-parameter creation tool with annotations covering the safety profile, the description is nearly complete for invocation. It lacks any mention of return value or post-creation behavior, but the operation is simple enough that this is a minor gap, not a correctness risk.

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

Parameters3/5

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

Schema coverage is 100% and the only parameter, 'title', already has a clear schema description. The tool description adds nothing beyond the schema about how the title is used, so it meets the baseline but does not elevate parameter understanding.

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: 'Create a new blank presentation.' It clearly differentiates this from sibling tools like slides_get, slides_batchUpdate, and docs_create by specifying the output is a blank presentation.

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

Usage Guidelines2/5

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

The description offers no guidance on when to use this tool versus alternatives such as drive_files_create or slides_batchUpdate. There is no mention of prerequisites, context, or exclusions; the only usage signal is implied by the action itself.

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