{"id":47954604,"url":"https://github.com/aaronsb/confluence-cloud","last_synced_at":"2026-04-11T17:09:13.512Z","repository":{"id":345585723,"uuid":"1185899687","full_name":"aaronsb/confluence-cloud","owner":"aaronsb","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-02T19:23:21.000Z","size":265,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-04T09:41:28.549Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aaronsb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-19T03:46:38.000Z","updated_at":"2026-04-02T19:23:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/aaronsb/confluence-cloud","commit_stats":null,"previous_names":["aaronsb/confluence-cloud"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/aaronsb/confluence-cloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronsb%2Fconfluence-cloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronsb%2Fconfluence-cloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronsb%2Fconfluence-cloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronsb%2Fconfluence-cloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aaronsb","download_url":"https://codeload.github.com/aaronsb/confluence-cloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aaronsb%2Fconfluence-cloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31684867,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-04T09:28:57.770Z","updated_at":"2026-04-11T17:09:13.473Z","avatar_url":"https://github.com/aaronsb.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Confluence Cloud MCP Server\n\nA Model Context Protocol server for interacting with Confluence Cloud. Structured page editing with session-based change tracking, native macro support, and graph-based navigation.\n\n## Install\n\n### Claude Desktop (one-click)\n\nDownload [`confluence-cloud-mcp.mcpb`](https://github.com/aaronsb/confluence-cloud/releases/latest) and open it — Claude Desktop will prompt for your Confluence credentials.\n\n### Claude Code\n\n```bash\nclaude mcp add confluence-cloud -e CONFLUENCE_API_TOKEN=your-token -e CONFLUENCE_EMAIL=your-email -e CONFLUENCE_HOST=https://your-team.atlassian.net -- npx -y @aaronsb/confluence-cloud-mcp\n```\n\n### Manual (any MCP client)\n\n```json\n{\n  \"mcpServers\": {\n    \"confluence-cloud\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@aaronsb/confluence-cloud-mcp\"],\n      \"env\": {\n        \"CONFLUENCE_API_TOKEN\": \"your-api-token\",\n        \"CONFLUENCE_EMAIL\": \"your-email\",\n        \"CONFLUENCE_HOST\": \"https://your-team.atlassian.net\"\n      }\n    }\n  }\n}\n```\n\n### Credentials\n\nGenerate an API token at [Atlassian Account Settings](https://id.atlassian.com/manage/api-tokens).\n\n## Tools\n\n| Tool | Description |\n|------|-------------|\n| `manage_confluence_page` | Get, create, update, delete, move, copy, or pull pages for editing |\n| `edit_confluence_content` | Structural block editing within a tracked session — patch sections, append, replace, find/replace, sync |\n| `manage_confluence_space` | List spaces, get space details, or manage space configuration |\n| `search_confluence` | Search using CQL, full-text, labels, or contributors |\n| `manage_confluence_media` | Upload, download, list, or delete page attachments |\n| `navigate_confluence` | Traverse page hierarchy, discover backlinks (via GraphQL), forward links, and related pages |\n| `queue_confluence_operations` | Batch multiple operations with result references (`$0.pageId`) and error strategies |\n\nEach tool accepts an `operation` parameter (except `queue_confluence_operations` which takes an `operations` array). Per-tool documentation is available as MCP resources at `confluence://tools/{tool_name}/documentation`.\n\n## Key Features\n\n**Session-based editing** — Pull a page into a tracked session, make surgical edits to individual blocks (sections, paragraphs, macros, tables), then sync only what changed. No full-page rewrites.\n\n**Native macro support** — Status badges, info/warning/error panels, expand blocks, and table of contents render as readable `:::directive` syntax. The server handles ADF serialization with correct native node types.\n\n**GraphQL navigation** — Backlinks and forward links use the Atlassian GraphQL gateway's link graph for accurate, fast relationship discovery. Falls back to REST when GraphQL is unavailable.\n\n**Rendering facades** — Every response is token-efficient markdown with context-aware next-step hints. No raw JSON.\n\n## MCP Resources\n\n| Resource | Description |\n|----------|-------------|\n| `confluence://macros` | Available macro registry with parameter schemas and usage examples |\n\n## Architecture\n\nSee [docs/architecture/INDEX.md](docs/architecture/INDEX.md) for the 8 ADRs covering the five-layer architecture, hybrid client, content model, session editing, macro handling, navigation, and rendering facades.\n\n## License\n\n[MIT License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronsb%2Fconfluence-cloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faaronsb%2Fconfluence-cloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faaronsb%2Fconfluence-cloud/lists"}