Skip to main content
Delete a branch policy.

Tool details

FieldValue
Namedelete_branch_policy
GroupBranches

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "policy_id": {
      "type": "string",
      "format": "uuid",
      "description": "Policy ID to delete"
    },
    "confirm": {
      "type": "boolean",
      "description": "Must be true to confirm deletion"
    }
  },
  "required": [
    "policy_id",
    "confirm"
  ],
  "additionalProperties": false,
  "description": "Input schema for the delete_branch_policy 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."
    },
    "deleted": {
      "type": "boolean",
      "description": "The deleted associated with this record."
    }
  },
  "required": [
    "id",
    "deleted"
  ],
  "additionalProperties": false,
  "description": "Structured delete policy output schema for MCP tools.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}