Atlassian team workspace for documentation.
## Confluence Cloud MCP Server: Team Wiki The **Confluence Cloud MCP Server** integrates Atlassian Confluence into Google Antigravity, enabling developers to create, search, and manage team documentation and knowledge bases through AI-assisted content management. ### Why Confluence Cloud MCP? - **Structured Content**: Organize documentation in spaces, pages, and hierarchies - **Rich Editor**: Create content with macros, templates, and embeds - **Team Collaboration**: Comments, mentions, and real-time co-editing - **Jira Integration**: Link documentation to Jira issues and projects - **Powerful Search**: Find content across all spaces with CQL ### Key Features #### 1. Page Management ```python # Create page with content page = await confluence.createPage({ "spaceKey": "DEV", "title": "Authentication API Reference", "body": { "storage": { "value": "<h1>Authentication API</h1><p>This document covers...</p>", "representation": "storage" } }, "ancestors": [{"id": "parent_page_id"}] }) # Update page content await confluence.updatePage({ "pageId": page.id, "title": page.title, "body": { "storage": { "value": updated_content, "representation": "storage" } }, "version": {"number": page.version.number + 1} }) # Get page with content pageContent = await confluence.getPage({ "pageId": page.id, "expand": ["body.storage", "version", "children.page"] }) ``` #### 2. Search and Organization ```python # Search with CQL results = await confluence.search({ "cql": "type = page AND space = DEV AND text ~ \"API documentation\"", "limit": 20 }) # Get space pages pages = await confluence.getSpaceContent({ "spaceKey": "DEV", "type": "page", "depth": "all" }) # Add label to page await confluence.addLabels({ "pageId": page.id, "labels": [{"name": "api"}, {"name": "documentation"}] }) ``` ### Configuration ```json { "mcpServers": { "confluence-cloud": { "command": "npx", "args": ["-y", "@anthropic/mcp-confluence"], "env": { "CONFLUENCE_URL": "https://your-domain.atlassian.net", "CONFLUENCE_EMAIL": "your-email@company.com", "CONFLUENCE_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Technical Documentation**: Maintain API docs, architecture decisions, and runbooks. **Knowledge Management**: Build searchable knowledge bases for teams and products. **Project Documentation**: Create and maintain project wikis linked to Jira issues. The Confluence Cloud MCP Server brings enterprise wiki capabilities to your development workflow.
{
"mcpServers": {
"confluence-cloud": {}
}
}