Skip to main content
Glama

list_folders

Retrieve all folders in an Arca workspace by supplying the workspace ID, giving you a clear overview of its organizational structure.

Instructions

List all folders in a workspace

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
workspace_idYesThe workspace ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.1

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 burden. 'List all folders' implies a read-only operation, but it does not disclose the return format, pagination behavior, ordering, permissions needed, or error behavior.

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 clear sentence with no filler or redundancy. It is appropriately front-loaded, though it is too terse to convey additional behavioral or usage context.

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 operation with no output schema and no annotations, this is minimally viable. The core purpose and required parameter are clear, but the missing return value contract and pagination/error behavior are notable gaps.

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%, and the schema already documents workspace_id as 'The workspace ID'. The description adds no new parameter semantics beyond confirming the workspace scope.

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 states a specific verb ('List'), a specific resource ('folders'), and a scope ('in a workspace'). This clearly distinguishes it from sibling tools that operate on tasks, lists, comments, statuses, labels, members, or workspaces.

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 gives no guidance about when to use this tool versus alternatives such as list_lists or list_tasks. There are no conditions, exclusions, or explicit routing signals.

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