Skip to main content
Glama

apps_script_list_deployments

Read-onlyIdempotent

Retrieve all deployments and entry points for a Google Apps Script project, automatically handling pagination to return complete results.

Instructions

List deployments and entry points, automatically following pagination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
maxPagesNo
pageSizeNo
scriptIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

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

The annotations already establish read-only, idempotent, open-world, non-destructive behavior. The description adds a meaningful behavioral trait beyond those annotations: it automatically follows pagination instead of returning only the first page. This adds practical context and does not contradict 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 one short, well-structured sentence. It front-loads the core purpose and adds one valuable behavioral detail without any filler or redundancy.

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?

For a read-only listing tool with rich annotations, this is mostly adequate. However, maxPages/pageSize semantics and the exact meaning of 'entry points' are left to inference, and there is no output schema to clarify the return shape.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explain scriptId, maxPages, or pageSize. The mention of pagination hints at page-related parameters, but it does not meaningfully describe the meaning or interaction of the three parameters.

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') and a specific resource ('deployments and entry points'). It clearly differentiates itself from the singular get_deployment sibling, which targets one deployment rather than listing them.

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 guidance is given on when to use this tool versus get_deployment, create_deployment, or other Apps Script list tools. The usage context is only implicit in the tool name, with no explicit alternatives or exclusions.

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