Confluence tools share the same credentials as Jira — no additional environment variables needed. The Confluence API is accessed through the same Atlassian domain.
Tool Description Key Parameters confluence_list_spacesList Confluence spaces limit, type, statusconfluence_get_spaceGet space details spaceId (required)confluence_create_spaceCreate a new space key, name (required)confluence_delete_spaceDelete a space spaceId (required)
Tool Description Key Parameters confluence_list_pagesList pages spaceId, title, status, limitconfluence_get_pageGet page with body content pageId (required), bodyFormatconfluence_create_pageCreate a page spaceId, title, body (required), parentIdconfluence_update_pageUpdate a page (auto version++) pageId, title, body (required)confluence_delete_pageDelete a page pageId (required)confluence_get_child_pagesGet child pages pageId (required), limitconfluence_get_page_ancestorsGet parent chain pageId (required)
Tool Description Key Parameters confluence_searchSearch with CQL cql (required), limit
space = "ENG" AND type = "page"
text ~ "deployment guide"
lastModified > "2024-01-01"
Tool Description Key Parameters confluence_get_page_commentsGet page comments pageId (required), limitconfluence_get_commentGet a specific comment commentId (required)confluence_create_commentAdd a comment pageId, body (required)confluence_update_commentUpdate a comment (auto version++) commentId, body (required)confluence_delete_commentDelete a comment commentId (required)
Tool Description Key Parameters confluence_get_page_labelsGet labels on a page pageId (required)confluence_add_page_labelsAdd labels to a page pageId, labels (required)confluence_remove_page_labelRemove a label pageId, labelId (required)
Tool Description Key Parameters confluence_get_page_attachmentsList page attachments pageId (required)confluence_get_attachmentGet attachment details attachmentId (required)confluence_upload_attachmentUpload file (base64) pageId, filename, content (required)confluence_delete_attachmentDelete an attachment attachmentId (required)
Tool Description Key Parameters confluence_get_page_propertiesGet all properties pageId (required)confluence_get_page_propertyGet a specific property pageId, key (required)confluence_set_page_propertySet/update a property (auto version++) pageId, key, value (required)
Confluence tools use two API versions:
v2 (/wiki/api/v2) — Pages, spaces, comments, labels, attachments, propertiesv1 (/wiki/rest/api) — Search (CQL), attachment uploadsBoth are handled transparently by the Confluence client.