Skip to main content
Dismiss an approval from a branch.

Tool details

FieldValue
Namedelete_branch_approval
GroupBranches

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "approval_id": {
      "type": "string",
      "format": "uuid",
      "description": "Approval ID to dismiss"
    },
    "reason": {
      "type": "string",
      "description": "Reason for dismissal"
    }
  },
  "required": [
    "approval_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the delete_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."
    },
    "deleted": {
      "type": "boolean",
      "description": "The deleted associated with this record."
    }
  },
  "required": [
    "id",
    "deleted"
  ],
  "additionalProperties": false,
  "description": "Structured dismiss approval output schema for MCP tools.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}