manage_comments
Manage Confluence comments by listing footer/inline comments, retrieving replies, and adding new comments with markdown or XHTML formatting.
Instructions
Unified tool for Confluence comments (list_footer, list_inline, get_replies)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform: 'list_footer', 'list_inline', 'get_replies', 'add_footer', 'reply' | |
| page_id | No | Page ID (required for list_footer, list_inline, add_footer) | |
| comment_id | No | Comment ID (required for get_replies, reply) | |
| body | No | Comment body content (required for add_footer, reply). Accepts markdown by default (# headings, **bold**, *italic*, [links](url), - lists, | tables). Set content_format='storage' to pass raw Confluence XHTML instead. | |
| content_format | No | Format of body content: 'markdown' (default) or 'storage' for raw Confluence XHTML. When using markdown: # for headings, **bold**, *italic*, \x60code\x60, [text](url) for links, - for lists, | for tables. | |
| limit | No | Number of results per page (default 25) | |
| cursor | No | Pagination cursor for next page |