Skip to main content
Use these tools when search results feel sparse, or when you need richer process metadata than fetch returns.

Choosing among the lookup tools

  • Semantic + keyword, broad β†’ search (entry point) or search_processes (richer, mixed results)
  • You have a resource key β†’ get_process_details (for processes) or get_hierarchy_node_details (for folders / groups / value streams)
  • Browse / orient β†’ get_process_hierarchy, then drill in with get_hierarchy_node_details or get_process_details
  • Drill further (what actually happened on a specific process) β†’ get_process_observations β†’ get_observation_citation. See Process observations for the full toolset.

Common chains

  • β€œWhat’s in this value stream?” β†’ get_process_hierarchy (broad) β†’ get_hierarchy_node_details on the relevant node β†’ get_process_details on each leaf
  • β€œPull every dependency of process X” β†’ get_process_details with scope=["dependencies"] β†’ walk the dependencies list with further get_process_details calls
  • β€œI have a resource key, give me everything” β†’ get_process_details with the scopes you care about (tasks, linked_artifacts, history)
  • β€œWhat actually happens when this process runs?” β†’ get_process_details β†’ get_process_observations β†’ get_observation_citation on a representative deviation