bear_delete_tag
Remove a specific tag from Bear App. Input the tag name to delete it, optionally choose to show the Bear window for confirmation.
Instructions
Delete an existing tag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Tag name to delete | |
show_window | No | Show Bear window |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Tag name to delete",
"type": "string"
},
"show_window": {
"description": "Show Bear window",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}