Community MCP server for Atlassian Confluence wiki and documentation platform. Agents can search across spaces, read page content, create new pages, update existing content, and manage page hierarchies. Supports both Confluence Cloud and Data Center. Ideal for documentation management, knowledge base queries, and technical writing workflows.
uvx mcp-atlassian
{
"mcpServers": {
"confluence": {
"env": {
"CONFLUENCE_URL": "https://your-domain.atlassian.net/wiki",
"CONFLUENCE_USERNAME": "your-email@example.com",
"CONFLUENCE_API_TOKEN": "your-api-token"
},
"args": [
"mcp-atlassian"
],
"command": "uvx"
}
}
}Create a new Confluence page
{
"type": "object",
"required": [
"space_key",
"title",
"body"
],
"properties": {
"body": {
"type": "string"
},
"title": {
"type": "string"
},
"space_key": {
"type": "string"
}
}
}// Input
{
"body": "<p>REST conventions</p>",
"title": "API Guidelines",
"space_key": "ENG"
}// Output
{
"id": "12350",
"url": "https://wiki/pages/12350"
}Get Confluence page content by ID
{
"type": "object",
"required": [
"page_id"
],
"properties": {
"page_id": {
"type": "string"
}
}
}// Input
{
"page_id": "12345"
}// Output
{
"id": "12345",
"body": "<p>Microservices...</p>",
"title": "Architecture"
}Search Confluence pages using CQL
Community MCP server for Atlassian Confluence wiki and documentation platform. Agents can search across spaces, read page content, create new pages, update existing content, and manage page hierarchies. Supports both Confluence Cloud and Data Center. Ideal for documentation management, knowledge base queries, and technical writing workflows.
Confluence provides 3 tools including create_page, get_page, search_content.
Confluence offers a free tier with 500 calls per month. For higher usage, paid plans start at €0/month.
You can install Confluence using the following command: uvx mcp-atlassian. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
{
"type": "object",
"required": [
"cql"
],
"properties": {
"cql": {
"type": "string"
},
"limit": {
"type": "integer"
}
}
}// Input
{
"cql": "type = page AND text ~ architecture",
"limit": 5
}// Output
{
"results": [
{
"id": "12345",
"title": "System Architecture"
}
]
}Confluence is listed under the Productivity category in the AgentForge MCP registry.
Confluence has a current uptime of 99.75% with an average response time of 250ms.
To connect Confluence, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Confluence's tools via the Model Context Protocol.