Skip to main content
Glama

list_deployments

Read-only

Check hosted-frontend deployments for an app to see version history, identify the live deployment, and get its public URL.

Instructions

List the hosted-frontend deployments of an app — versions, which one is live, and the public URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdYesApp id or slug (from list_apps / create_app)
organizationIdNoOrganization id; defaults to the credential organization when omitted

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.13.0
    • addedInput schema / properties / appId / description
      Added value: +"App id or slug (from list_apps / create_app)"
    • addedInput schema / properties / organizationId / description
      Added value: +"Organization id; defaults to the credential organization when omitted"
  2. First observedv0.7.0

TDQS

A4/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description does not add extra behavioral details about side effects or requirements, so it meets the baseline for a read-only operation.

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 concise sentence that front-loads the action and resource, then lists the key output attributes. No unnecessary words.

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?

The description mentions that the output includes versions, the live deployment, and the public URL, which gives agents an idea of what to expect. It doesn't mention pagination or ordering, but those are minor for a list operation and no output schema is required.

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?

The schema already provides descriptions for both parameters (appId and organizationId), including the default behavior for organizationId. The description does not add further clarification beyond what is in the schema.

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 the verb 'List' and the resource 'hosted-frontend deployments of an app', and it distinguishes the tool from siblings like deploy_frontend and rollback_deployment by specifying the output (versions, live status, public URL).

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

Usage Guidelines4/5

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

The description implies the appropriate use case (when you need to view deployment versions and status), but it does not explicitly contrast with alternative list tools such as list_apps or get_app_spec. Still, it provides enough guidance for a straightforward listing operation.

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