Skip to main content
Glama
Vijay-Duke
by Vijay-Duke

list_confluence_page_labels

Retrieve all labels for a specific Confluence page by page ID. Filter results by prefix and paginate to locate relevant tags.

Instructions

Retrieves all labels for a specific Confluence page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoThe maximum number of labels to return. Default is 25, maximum is 200.
startNoThe starting index for pagination. Default is 0.
pageIdYesThe ID of the page from which to get labels.
prefixNoFilter labels by a specific prefix (e.g., "global", "my").

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. 'Retrieves' implies a read operation, but the claim 'all labels' is misleading because the schema includes limit and start parameters indicating pagination, and the default limit is only 25. It also does not disclose that the prefix parameter filters results, so the tool may not actually return all labels in one call.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single succinct sentence with no filler and front-loads the action and object. It is appropriately short, though the misleading 'all labels' wording slightly reduces the quality of the concise formulation.

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 tool is relatively simple and the schema documents all four parameters, which helps. However, because there is no output schema and no annotations, the description should more clearly disclose pagination behavior so an agent knows how to actually retrieve all labels; the current text overpromises 'all' without explaining limits or prefixes.

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?

Schema description coverage is 100%, so the parameters are fully documented in the input schema itself. The description adds little parameter-level meaning; any added meaning is slightly undermined by 'all labels' conflicting with the paginated limit/start semantics.

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, 'Retrieves', and a clear resource, 'all labels for a specific Confluence page', so an agent can tell this is the label-reading tool. It does not explicitly contrast with sibling tools such as add_confluence_page_label or list_confluence_page_children, but the resource term alone largely disambiguates it.

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 phrase 'for a specific Confluence page' implies the tool is for fetching labels tied to one page. However, it gives no explicit guidance on when to use this versus related tools, nor does it mention alternatives or exclusions such as using add_confluence_page_label to modify labels.

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