Skip to main content
Glama

ado_children

List direct children or all descendant work items from a parent ID, with optional filters for type, state, and closed date retrieval.

Instructions

List children or descendants of a work item by parent ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
parent_idYesParent work item ID
recursiveNoShow all descendants, not just direct children
type_filterNoFilter by work item type (e.g. 'Bug', 'User Story')
state_filterNoFilter by state (e.g. 'Active', 'Closed')
include_closed_dateNoInclude closed date from state history

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/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 disclosure burden. 'List' signals a read-only operation, but the description does not state defaults such as recursive=false returning only direct children, nor does it mention pagination or return format. It adds little beyond the action itself.

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 short, front-loaded sentence with no filler. It efficiently states the core action and resource without repeating schema details.

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?

Given 5 parameters, no output schema, and no annotations, the description is minimally viable but incomplete. It does not mention default recursion behavior, when to apply filters, or what fields the returned list contains, so the agent must rely on schema defaults and tool naming.

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 baseline is 3. The description only reiterates the parent_id concept and adds no new semantic meaning for recursive, type_filter, state_filter, or include_closed_date beyond the schema property descriptions.

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?

States a specific verb ('List'), resource ('children or descendants of a work item'), and the key required parameter ('by parent ID'). It clearly distinguishes from sibling tools like ado_list_comments and ado_list_links, which operate on different resources.

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?

No explicit when-to-use or alternative guidance. Usage is implied by the resource type, but there are no exclusions or comparisons to siblings, so the agent must infer when to choose this over ado_show or ado_list_links.

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