Tool details
| Field | Value |
|---|---|
| Name | list_branch_status_checks |
| Group | Branches |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"branch_id": {
"type": "string",
"format": "uuid",
"description": "Branch ID"
}
},
"required": [
"branch_id"
],
"additionalProperties": false,
"description": "Input schema for the list_branch_status_checks tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"status_checks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the record."
},
"check_name": {
"type": "string",
"description": "The check name associated with this record."
},
"status": {
"type": "string",
"enum": [
"pending",
"success",
"failure"
],
"description": "Lifecycle status for the record."
},
"description": {
"type": [
"string",
"null"
],
"description": "Human-readable description for the record."
}
},
"required": [
"id",
"check_name",
"status",
"description"
],
"additionalProperties": false,
"description": "One status check item associated with this record."
},
"description": "List of status checks associated with this record."
}
},
"required": [
"status_checks"
],
"additionalProperties": false,
"description": "Structured list status checks output schema for MCP tools.",
"$schema": "http://json-schema.org/draft-07/schema#"
}