manage_labels
Unified tool for listing, adding, and removing labels on Confluence pages.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
action | string | Yes | list, add, or remove |
page_id | string | Yes | Page ID (required for all actions) |
label | string | For add, remove | Label name |
limit | int | No | Results per page (default 25) |
cursor | string | No | Pagination cursor |
Actions
Section titled “Actions”List all labels on a page.
{ "action": "list", "page_id": "12345678"}Response:
["architecture", "adr", "important"]Add a label to a page.
{ "action": "add", "page_id": "12345678", "label": "reviewed"}Response:
Label 'reviewed' added to page 12345678remove
Section titled “remove”Remove a label from a page.
{ "action": "remove", "page_id": "12345678", "label": "draft"}Response:
Label 'draft' removed from page 12345678