Overview
Access and manage Confluence pages, spaces, and knowledge base for team documentation.
Setup
Run with npx:
npx -y @modelcontextprotocol/server-confluenceConfiguration
CONFLUENCE_HOST, CONFLUENCE_EMAIL, CONFLUENCE_API_TOKEN environment variablesDocumentation
Confluence MCP (Enhanced)
Overview
Confluence MCP provides integration with Atlassian Confluence, enabling AI agents to access and manage pages, spaces, and knowledge base content.
Features
- Page creation and editing
- Space management
- Content search
- Attachment handling
- Version control
Installation
npx -y @modelcontextprotocol/server-confluence
Configuration
Set the following environment variables:
export CONFLUENCE_HOST=https://your-domain.atlassian.net/wiki
export CONFLUENCE_EMAIL=your-email@example.com
export CONFLUENCE_API_TOKEN=your_api_token
Available Tools
| Tool | Description |
|---|---|
search_pages | Search pages with CQL |
get_page | Get page content |
create_page | Create a new page |
update_page | Update page content |
list_spaces | List all spaces |
Usage Examples
Search Pages
{
"cql": "space = 'DEV' AND title ~ 'documentation'"
}
Create a Page
{
"title": "API Documentation",
"space_key": "DEV",
"content": "<p>API documentation content...</p>"
}
Pros
- ✅ Confluence integration
- ✅ Knowledge base management
- ✅ Search capabilities
- ✅ Version control
Cons
- ❌ Requires Atlassian account
- ❌ Complex configuration
- ❌ Limited to Confluence ecosystem
