Skip to main content
Glama
Cloady

Cloady

Official
by Cloady

List Workspace Domains

listWorkspaceDomains
Read-only

List all domains associated with a specific workspace in Cloady. Provide the workspace slug to retrieve domain details.

Instructions

List all domains in workspace

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workspaceSlugYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.1

TDQS

A3.7/5.0
Behavior3/5

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

The description is consistent with the readOnlyHint and destructiveHint annotations. It does not add extra behavioral context beyond the obvious read-only nature of listing, but it also 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 a single short sentence with no redundant or unnecessary wording. It is direct and easy to scan.

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?

For a simple read-only list operation with a single required parameter and no output schema, the description is sufficient. It does not mention return shape or pagination, but those are not necessary for basic invocation and no output schema exists.

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 schema provides no description for workspaceSlug, and the tool description does not clarify its format, requiredness, or example values. The parameter name is somewhat self-explanatory, but the description adds little beyond 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 action ('List'), the resource ('domains'), and the scope ('in workspace'). It is easy to distinguish from the sibling listAppDomains because it targets workspace-level domains rather than app-specific domains.

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?

The description gives no explicit guidance about when to choose this tool over alternatives. The intended use is implied by the phrase 'all domains in workspace,' but it does not explicitly mention listAppDomains or other domain-related tools.

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