manage_comments
Unified tool for managing footer comments, inline comments, and replies on Confluence pages.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
action | string | Yes | See actions below |
page_id | string | Varies | Page ID |
comment_id | string | Varies | Comment ID |
body | string | Varies | Comment body in storage format |
limit | int | No | Results per page (default 25) |
cursor | string | No | Pagination cursor |
Read Actions
Section titled “Read Actions”list_footer
Section titled “list_footer”List footer comments on a page.
Required: page_id
{ "action": "list_footer", "page_id": "12345678"}Response:
[ { "id": "99887766", "type": "footer", "author_id": "5b10ac...", "body": "Looks good, approved!", "created": "2025-03-01T10:00:00Z", "status": "current" }]list_inline
Section titled “list_inline”List inline comments on a page. Includes the highlighted text selection.
Required: page_id
{ "action": "list_inline", "page_id": "12345678"}Response:
[ { "id": "99887767", "type": "inline", "author_id": "5b10ac...", "body": "Should we update this section?", "created": "2025-03-01T11:00:00Z", "status": "current", "inline_selection": "the system architecture" }]get_replies
Section titled “get_replies”Get replies to a comment.
Required: comment_id
{ "action": "get_replies", "comment_id": "99887767"}Write Actions
Section titled “Write Actions”add_footer
Section titled “add_footer”Add a footer comment to a page.
Required: page_id, body
{ "action": "add_footer", "page_id": "12345678", "body": "<p>Great work on this document!</p>"}Reply to an existing comment.
Required: comment_id, body
{ "action": "reply", "comment_id": "99887767", "body": "<p>Yes, I'll update it this week.</p>"}