Skip to main content
Glama
tsvikas
by tsvikas

list_children

Retrieve the tasks and sub-projects inside a specified project or category by ID or name. Use it to inspect direct child items and navigate your workspace hierarchy.

Instructions

Open tasks and sub-projects directly inside a project/category (by id or name).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
parentYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYesmatches before `limit` was applied
tasksYes
parentYes
truncatedNo
subprojectsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It usefully discloses that only open tasks and sub-projects are returned and that traversal is non-recursive, but it omits pagination behavior tied to the limit parameter, ordering, and permission requirements.

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 definition is a single efficient sentence with the key scope information front-loaded. The parenthetical '(by id or name)' is compact and relevant, with no wasted words.

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 two-parameter list tool with an output schema, the description is nearly adequate: it states what is returned and the parent format. However, it leaves gaps around limit/pagination semantics and when to choose this tool over sibling listing or structure tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/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 document both parameters. It explains that the parent may be given by id or name, but says nothing about the limit parameter's role, default, or effect on output size.

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?

States a clear verb-resource: lists open tasks and sub-projects directly inside a project/category. The scope 'directly inside' is specific, but it does not explicitly distinguish itself from siblings like get_structure or search_tasks.

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 description implies when to use it (to see direct children of a project/category), but offers no explicit when-not conditions or alternative tools. No routing guidance against the many sibling list/search tools is provided.

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