Skip to content

manage_labels

Unified tool for listing, adding, and removing labels on Confluence pages.

ParameterTypeRequiredDescription
actionstringYeslist, add, or remove
page_idstringYesPage ID (required for all actions)
labelstringFor add, removeLabel name
limitintNoResults per page (default 25)
cursorstringNoPagination cursor

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 12345678

Remove a label from a page.

{
"action": "remove",
"page_id": "12345678",
"label": "draft"
}

Response:

Label 'draft' removed from page 12345678