Skip to main content
Glama
taylorwilsdon

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

Get Script Version

get_script_version
Read-onlyIdempotent

List or retrieve immutable version snapshots for a Google Apps Script project. Use the list action to see all versions or specify a version number to get that snapshot.

Instructions

List or retrieve immutable version snapshots of a script project.

Actions: - "list": List every version of the project. - "get": Retrieve one version. Requires version_number.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes
script_idYes
version_numberNo
user_google_emailYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.28.0

TDQS

A3.7/5.0
Behavior3/5

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

The description adds 'immutable version snapshots' and notes that 'get' requires version_number, which are useful behavioral details. Annotations already declare readOnlyHint=true and destructiveHint=false, covering the read-only safety profile. However, it does not explain operational behaviors like authentication context or error responses, though these are partially mitigated by the annotations.

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 compact and well-structured: a single opening sentence stating purpose followed by a bulleted list of the two actions. Every sentence contributes value and there is no redundant wording.

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

Completeness3/5

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

The tool has an output schema and simple semantics, so return values are covered elsewhere. Yet with 0% schema coverage, the description should explain all parameters. It adequately covers action and version_number but leaves user_google_email and script_id under-specified, creating some ambiguity for an unfamiliar agent.

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 0%, so the description must compensate. It clarifies the two modes of the action parameter and the necessity of version_number for 'get'. It does not explain the role of user_google_email or script_id beyond the phrase 'script project', leaving two of four parameters with vague semantics.

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 ('List or retrieve') and resource ('immutable version snapshots of a script project'), clearly distinguishing it from sibling tools like manage_script_version and list_script_deployments. The action parameter variants make the purpose concrete and unambiguous.

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?

It provides internal usage guidance for the two action modes ('list' and 'get', the latter requiring version_number), but it does not explicitly state when to prefer this tool over alternatives such as manage_script_version. The differentiation from siblings is implied by the noun 'version' rather than explicitly spelled out.

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