Skip to main content
Approve a branch for merging. Your approval counts toward the required approval count.

Tool details

FieldValue
Namecreate_branch_approval
GroupBranches

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "branch_id": {
      "type": "string",
      "format": "uuid",
      "description": "Branch ID to approve"
    },
    "comment": {
      "type": "string",
      "description": "Optional approval comment"
    }
  },
  "required": [
    "branch_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the create_branch_approval 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."
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "description": "Structured approve branch output schema for MCP tools.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}