atlas-mcp-server

by cyanheads
Verified

get_children

Get all immediate child tasks under a specific path.

When to Use:

  • Understanding task breakdown
  • Tracking milestone progress
  • Planning next phase
  • Identifying missing subtasks

Best Practices:

  • Check milestone children for coverage
  • Verify subtask relationships
  • Monitor child task status
  • Ensure logical task grouping

Example: { "path": "project/backend", "reasoning": "Examining backend tasks to understand implementation progress, identify gaps in functionality, and ensure proper task decomposition." }

Input Schema

NameRequiredDescriptionDefault
pathYesParent task path to get children from

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Parent task path to get children from", "type": "string" } }, "required": [ "path" ], "type": "object" }