Skip to main content
Glama
taylorwilsdon

Google Workspace MCP Server - Control Gmail, Calendar, Docs, Sheets, Slides, Chat, Forms & Drive

Manage Script Version

manage_script_version

Create immutable snapshots of Google Apps Script projects to track code versions. Specify a script ID and optional description to capture the current state.

Instructions

Create immutable version snapshots of a script project.

Versions capture a snapshot of the current script code; once created they cannot be modified.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes"create".
script_idYesThe script project ID.
descriptionNoOptional description for the new version (create only).
user_google_emailYesUser's email address

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.28.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already indicate this is a non-read, non-idempotent, non-destructive operation. The description adds useful behavioral context by stating versions are immutable and cannot be modified after creation. However, it does not disclose output behavior, error conditions, or any side effects beyond version creation.

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 two concise sentences with no filler. The primary action is front-loaded, and the immutability caveat is placed in a separate clarifying sentence. Every sentence 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?

Given the schema coverage, output schema presence, and annotations, the description is largely sufficient for a simple create-version tool. It clearly states what is captured and the immutability constraint. Minor missing context includes when to prefer this over related version/script management tools, but this is more of a usage guideline gap.

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 description coverage is 100%, so the schema fully documents all four parameters. The description adds no additional parameter-level meaning beyond confirming that the action is 'create,' which matches the schema's action description.

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 clearly states a specific verb and resource: 'Create immutable version snapshots of a script project.' It also clarifies the core behavior—capturing a snapshot of current script code—and distinguishes itself from read-oriented siblings like get_script_version.

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?

No explicit guidance is given about when to use this tool versus alternatives such as get_script_version, manage_script_content, or manage_script_project. The description implies a create operation but does not state exclusions or conditions that would route an agent to the correct sibling.

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