Skip to main content
Glama

confluence_get_folder

Retrieve a Confluence folder by its ID, with options to include direct children, operations, properties, or collaborators. Use this to fetch folder details and related data in one request.

Instructions

Get one Confluence folder by ID, optionally including direct children, operations, properties, or collaborators.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
folder_idYes
max_charsNo
include_operationsNo
include_propertiesNo
include_collaboratorsNo
include_direct_childrenNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. 'Get' implies a read-only operation, and the optional include modifiers give useful behavioral context. However, it does not disclose behavior around max_chars, pagination, response size, or what happens with invalid IDs.

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?

A single sentence, front-loaded with the verb and object, and the optional include list is compact. There is no filler or repetition of schema details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With six parameters, no annotations, and no output schema, the description is thin. It covers the core action and optional flags but omits max_chars semantics and any indication of the return shape. For a tool with this many options and no structured documentation, more context is needed.

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 0%, so the description must compensate. It clarifies folder_id by saying 'by ID' and enumerates the include_* booleans. However, max_chars is not explained at all, and no parameter-level detail is given about constraints or effects.

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 opens with a specific verb and resource: 'Get one Confluence folder by ID.' It clearly distinguishes this from sibling tools like confluence_list_children or confluence_get_page, and the optional include list adds scope without obscuring the core purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The context is clear: use this to fetch a single folder by its ID, optionally with children, operations, properties, or collaborators. It does not explicitly state when to prefer list_children or get_content, but the single-entity-by-ID framing is strong enough for an agent to infer the primary use case.

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