Skip to main content
Glama

list_labels

Retrieve all labels from a specific workspace in alphabetical order to organize and manage tasks efficiently.

Instructions

List all labels in a workspace, ordered alphabetically

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workspace_idYesThe workspace ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.1

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description itself must convey behavior; it does indicate a read-only listing action, full scope ('all labels'), and alphabetical ordering. However, it does not disclose return format, pagination behavior, or any permission requirements, so transparency is partial rather than complete.

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?

One compact sentence delivers the action, resource, scope, and ordering with no filler. The key discriminators are front-loaded and every word contributes.

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 simple one-parameter list tool, the description is adequate for invocation: it names the required workspace scope and the expected output type. But with no output schema and no annotations, it omits return-value structure, pagination, and any access caveats, leaving an agent to infer details.

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 input schema fully documents the single workspace_id parameter with the description 'The workspace ID,' and schema coverage is 100%. The description's phrase 'in a workspace' adds only a minor contextual link to the parameter, not meaningful semantic detail beyond the schema.

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?

The description uses a specific verb ('List') with a clear resource ('labels') and scope ('in a workspace'), and adds the ordering detail 'alphabetically.' It distinguishes itself from sibling tools like create_label or list_statuses by naming the exact resource, though it does not explicitly contrast itself with similar list_* tools.

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?

There is no guidance about when to use this tool instead of alternatives such as list_statuses, list_custom_fields, or list_members. The intended use is only implied by the resource name 'labels,' with no stated conditions, prerequisites, or exclusions.

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