Skip to main content
Update or create a status check for a branch (e.g., CI results, linting).

Tool details

FieldValue
Nameupsert_branch_status_check
GroupBranches

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "branch_id": {
      "type": "string",
      "format": "uuid",
      "description": "Branch ID"
    },
    "check_name": {
      "type": "string",
      "description": "Name of the check (e.g., \"ci\", \"lint\", \"tests\")"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "success",
        "failure"
      ],
      "description": "Check status"
    },
    "description": {
      "type": "string",
      "description": "Description of the check result"
    },
    "external_url": {
      "type": "string",
      "description": "URL to external CI/CD results"
    }
  },
  "required": [
    "branch_id",
    "check_name",
    "status"
  ],
  "additionalProperties": false,
  "description": "Input schema for the upsert_branch_status_check tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the record."
    },
    "status": {
      "type": "string",
      "description": "Lifecycle status for the record."
    }
  },
  "required": [
    "id",
    "status"
  ],
  "additionalProperties": false,
  "description": "Structured update status check output schema for MCP tools.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}