Skip to main content
Glama
Cloady

Cloady

Official
by Cloady

List Branches

listBranches
Read-only

Get live GitHub branches for a Cloady app, including the current branch it deploys from. Works for git-based apps only.

Instructions

Fetched live from GitHub; empty for apps whose source is not git. current is the branch the app deploys from.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
envNo
regionNo
appSlugYes
workspaceSlugYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.1

TDQS

A3.5/5.0
Behavior4/5

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

Description discloses that data is fetched live from GitHub, that results are empty for non-Git sources, and defines the 'current' field. This goes beyond the read-only annotation by explaining actual behavior, though it omits potential network delay or authentication requirements.

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 extremely concise and to the point, with no redundant phrases. It conveys the essential behavior in two short sentences.

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 description includes a useful edge case (empty for non-Git) and defines 'current', but lacks parameter details and any indication of response format. For a simple read-only tool this is acceptable, but not fully complete.

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?

The description does not explain any of the four parameters (workspaceSlug, appSlug, env, region) beyond their implicit names. Since the schema covers them but the description adds no clarification, the semantic value is minimal.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly indicates the tool fetches live data from GitHub and explains the meaning of 'current' in relation to the deployed branch. It is specific enough to distinguish from generic Git tools, though it could more explicitly state that it returns a list of branches.

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?

Provides context about when results may be empty (non-Git sources) and that data is fetched live. However, it does not explicitly mention when to use this tool over related alternatives like getGitOverview or inspectSource.

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