confluence-dc-advops-mcp
This server provides MCP tools for managing Confluence Data Center pages and space templates, focusing on moving pages, editing body storage XML locally, and syncing page content to templates. Capabilities include: moving one or multiple pages under new parents; downloading page storage XML to a local file and publishing edits back (with auto version bump and optional reparenting); listing, downloading, and uploading attachments; listing, downloading, creating, updating, and syncing space templates; and destructively deleting space templates (requiring explicit human confirmation). Authentication uses CONFLUENCE_HOST and CONFLUENCE_API_TOKEN from environment variables, local files, or macOS Keychain.
Provides tools for managing Confluence Data Center pages (get, update, move, sync with space templates) and space templates (list, get, create, update, delete).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@confluence-dc-advops-mcpmove page 123456 under parent 789012"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
confluence-dc-advops-mcp
Local MCP helpers for Confluence Data Center used from Cursor.
Русская документация: README.ru.md.
Talks to the same proxy/auth as @atlassian-dc-mcp/confluence
(local TLS proxy + token from keychain / env). Prefer these tools over
ad-hoc curl to the public Confluence hostname.
Auth
Same sources as @atlassian-dc-mcp/confluence:
CONFLUENCE_HOST(env or~/.atlassian-dc-mcp/confluence.env) — typically your local proxy, e.g.https://localhost:8443CONFLUENCE_API_TOKEN(env), or macOS Keychain serviceatlassian-dc-mcp/ accountconfluence-token
Do not commit tokens or *.env files. See SECURITY.md.
Related MCP server: confluence-mcp-server
Tools
Tool | When |
| Reparent only (until upstream |
| Direct children + tree |
| Sibling order / append: |
| Exact full child order (permutation; sequential movepage) |
| Dump page |
| Publish page storage XML from file (auto version bump) |
| Headings in a local storage file (no bodies) |
| One section as text / markdown / storage fragment (optional |
| Replace one section body on disk ( |
| Macro inventory (no bodies) |
| Replace one macro body (e.g. mermaid CDATA) |
| List attachments on a page |
| Download attachment binary to a local file |
| Upload / new version of attachment from local file |
| Footer (page) comments; quote page text in the body (no inline create) |
| Read inline comments (open vs resolved) and reply in thread |
| Page labels ( |
| List space page templates ( |
| Dump space template body to a local XML file |
| Create new space template from file (POST); optional |
| Publish space template body from file |
| Set labels on a space template (body unchanged) |
| Fast path: copy page body and labels → space Create-from-template snapshot |
| Destructive. Delete Create template(s). Requires human chat OK + |
Fast path for large pages (BRD/SRS/…)
confluence_getStorageToFile→/path/to/page.xmlconfluence_storage_listHeadings/getSection(format: text) — do not@or Read the dump file into chatconfluence_storage_replaceSectionorconfluence_storage_replaceMacroBody(dryRunfirst if unsure)confluence_updateStorageFromFile(omitversionto auto-bump, or pass current+1)Verify with
user-confluence-dc/confluence_getContentbodyMode: text(limit chars)If the page is also a Create-from-template snapshot → sync space template (below)
Delete the temp file
These storage tools do not publish and do not return the full XML. Python/StrReplace on the dump is a fallback when they do not cover the case.
Do not round-trip the whole page through Markdown (macros/layout will not survive).
For tiny pages that are not templates, user-confluence-dc confluence_updateContent is still ok.
Fast path: page → space template (Create from template)
Catalog / BSA page = source of truth. Space template = snapshot for «Create from template».
confluence_syncPageToSpaceTemplate
contentId: "<pageId>"
spaceKey: "<spaceKey>"
templateId: "<templateId>"
descriptionSuffix: "(sync note)" # optional
# copyPageLabels: true by default — template labels come from the pageDC notes:
List:
/rest/experimental/template/page?spaceKey=…GET by template id alone often 404 — always pass
spaceKeyUpdate:
PUT /rest/experimental/templatewithtemplateType: "page"andbody.storageDelete:
DELETE /rest/experimental/template/{id}— only via MCP delete tools after human confirmation (confirm: "DELETE"+ exactconfirmName/confirmNames). No trash restore.
Labels (pages + Create from template)
Confluence copies space-template labels onto pages created from that template. Put labels on the catalog page, then sync (or set them on the template). New pages from «Create from template» inherit them.
Tool | When |
| Read labels on a page |
| Add without removing others |
| Remove by name |
| Replace global labels ( |
| Labels on the template only (keeps body) |
confluence_syncPageToSpaceTemplate copies the page’s global labels onto the template (copyPageLabels default true). If the page has none, current template labels are kept. Pass labels: [...] to set them explicitly. Create/update-from-file accept labels and copyLabelsFromContentId.
Page API: GET/POST /rest/api/content/{id}/label, DELETE …/label?name=. Template labels go in the experimental template PUT payload (omitting them can wipe labels on DC — tools always send a list unless you set keepLabels: false with no replacement).
Footer comments (page comments)
No inline comments. Put a quote from the page in the comment body so the subject is clear.
Tool | When |
| List footer comments ( |
| New footer comment under a page |
| Reply in a footer thread |
bodyFormat: plain (default — wrap in <p>, blank lines = paragraphs) or storage (raw Confluence storage XML).
Inline comments (read + reply only)
Does not create new text anchors. Use footer comments with a quote if you need a new note.
Tool | When |
| List inline comments; |
| Reply in an existing inline thread |
Each item includes status (open|resolved), visibleOnPage (true when open on the page), and originalSelection (anchored text when present).
Cursor config
"confluence-dc-advops": {
"command": "node",
"args": ["/path/to/confluence-dc-advops-mcp/index.js"],
"env": {
"CONFLUENCE_HOST": "https://localhost:8443",
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
}
}After changing index.js, reload MCP servers in Cursor so new tools appear.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProduction-ready MCP server for Atlassian Jira and Confluence, providing tools for issue management, page retrieval, and content operations.341MIT
- AlicenseAqualityCmaintenanceMCP server for Confluence Cloud/Server/Data Center, enabling page search, CQL queries, page CRUD, attachment upload, and user identity lookup.233794MIT
- AlicenseAqualityCmaintenanceAn MCP server for reading and writing Confluence pages in native Atlassian Document Format (ADF), enabling precise edits at the document node level without loss of formatting.43MIT
- AlicenseBqualityDmaintenanceMCP server for administering Atlassian Confluence Cloud wiki pages, supporting CRUD operations, page navigation, comments, attachments, and more.621GPL 3.0
Related MCP Connectors
MCP server for Appcircle mobile CI/CD platform.
The MCP server for Azure DevOps, bringing the power of Azure DevOps directly to your agents.
MCP Server for JFrog, providing tools for development and artifact management.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iljasorokin/confluence-dc-advops-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server