rca_graph_markov_blanket
Identifies the Markov blanket of a node in a causal graph, returning parents, children, and co-parents to isolate the node for root cause analysis.
Instructions
Return the Markov blanket of a node: parents ∪ children ∪ co-parents. The Markov blanket is the minimal conditioning set that d-separates the node from the rest of the graph — essential for targeted RCA investigation.
Args: params (MarkovBlanketInput): graph_id, node
Returns: str: JSON with parents, children, co_parents, full_blanket
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |