Skip to main content
Glama
Cloady

Cloady

Official
by Cloady

List Workspace Members

listWorkspaceMembers
Read-only

Retrieve all members of a Cloady workspace by providing its slug. Identify who has access to manage deployments and resources.

Instructions

List workspace members

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workspaceSlugYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.1

TDQS

C2.8/5.0
Behavior3/5

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

The annotations already indicate readOnlyHint=true and destructiveHint=false, so the read-only nature is transparent. The description adds no extra behavioral details (e.g., no mention of pagination or sorting), but it does not contradict the annotations. Given the annotation coverage, this is acceptable.

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 phrase that directly conveys the purpose. There is no fluff or redundant information, making it highly efficient for an agent to parse.

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 is sparse but adequate for a simple list operation. It does not mention the return format (e.g., list of member objects) or any filtering capabilities, but given the tool's simplicity and the absence of an output schema, an agent can likely infer the expected result. More detail could improve completeness but is not strictly necessary.

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 documents the single required parameter workspaceSlug, and the description adds no additional meaning. However, the parameter is self-explanatory within the context of workspace operations, so the schema coverage is sufficient. No extra semantics are needed.

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

Purpose2/5

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

Tautological: description restates name/title.

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?

The description provides no guidance on when to use this tool versus alternatives. It does not mention scenarios where this tool is preferred over others, nor does it reference prerequisites or related tools. An agent must infer usage from the name alone.

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