Confluence MCP Server avatar

Confluence MCP Server

Pricing

from $80.00 / 1,000 create pages

Go to Apify Store
Confluence MCP Server

Confluence MCP Server

A Model Context Protocol (MCP) server that enables AI assistants to interact with Confluence Cloud. Search pages, read content, create and update documentation, manage spaces โ€” directly from Claude, Cursor, or any MCP client.

Pricing

from $80.00 / 1,000 create pages

Rating

0.0

(0)

Developer

LIAICHI MUSTAPHA

LIAICHI MUSTAPHA

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

a day ago

Last modified

Share

๐Ÿ“„ Confluence MCP Server

The first MCP server that connects your AI assistant directly to Confluence โ€” search docs, read pages, create and update content without switching tabs.

Apify Actor MCP Confluence API

About this MCP Server: To understand how to connect to and use this MCP server, please refer to the official Model Context Protocol documentation at mcp.apify.com โ†—.


๐ŸŽฏ Why This Exists

Confluence is where your team's knowledge lives โ€” architecture decisions, runbooks, onboarding guides, API docs. But accessing it during a coding or planning session means another tab, another search, another context switch.

The Confluence MCP Server eliminates this. Ask your AI assistant to find the authentication architecture doc, summarize the onboarding guide, or create a new page for your sprint retrospective โ€” all without leaving your chat.

The Documentation Gap in AI Tooling

ToolMCP Available?Hosted on Apify?
Confluenceโœ… This Actorโœ…
NotionPartialโŒ
GitBookโŒโŒ
CodaโŒโŒ

Confluence has over 60,000 organizations using it โ€” and this is the first hosted, serverless MCP server for it on the Apify Store.


โšก What It Does

The Confluence MCP Server runs as an Apify Actor in standby mode, exposing 8 tools to any MCP-compatible AI assistant. It connects to your Confluence Cloud workspace using the same API credentials as your Jira account (Atlassian API token).

๐Ÿ› ๏ธ Available Tools

ToolDescription
get_spacesList all Confluence spaces the user has access to
get_space_infoGet detailed info about a specific space
search_pagesSearch using CQL (Confluence Query Language) โ€” find pages by keyword, space, or author
get_pageRead the full content of a page, including its body text and version
get_child_pagesList child pages under a parent page
create_pageCreate a new page in any space, optionally nested under a parent
update_pageUpdate the content and title of an existing page
add_commentAdd a footer comment to a page

๐ŸŒณ When to Use Which Tool

Exploring the wiki?
โ””โ”€โ”€ get_spaces โ†’ get_space_info โ†’ search_pages
Reading documentation?
โ”œโ”€โ”€ search_pages (CQL: "type=page AND text~\"keyword\"")
โ”œโ”€โ”€ get_page (read full content by page ID)
โ””โ”€โ”€ get_child_pages (navigate hierarchy)
Taking action?
โ”œโ”€โ”€ New doc โ†’ create_page (needs spaceId from get_spaces)
โ”œโ”€โ”€ Update doc โ†’ update_page (needs currentVersion from get_page)
โ””โ”€โ”€ Leave a note โ†’ add_comment

๐Ÿ’ก Who Is This For?

๐Ÿ‘จโ€๐Ÿ’ป Developers Using Cursor, Windsurf, or VS Code

"Show me the API authentication architecture doc."

Ask your coding assistant to pull up architecture decisions, runbooks, or API specs from Confluence โ€” without leaving your IDE.

๐Ÿค– Claude Desktop Users

"Summarize our onboarding guide and create a checklist from it."

Have Claude read your onboarding documentation and restructure it into a more useful format, then save it back as a new Confluence page.

๐Ÿ“‹ Product Managers & Technical Writers

"Create a sprint retrospective page in the Team space."

Let your AI assistant draft and create meeting notes, sprint retrospectives, or design docs directly in Confluence.

๐Ÿง  AI Automation Builders

"Search for all pages tagged with 'incident' and summarize them."

Use this Actor as the Confluence knowledge retrieval node in your AI agent or automation pipeline.


๐Ÿ”— Connection URL

https://mcp-servers--confluence-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN

Replace YOUR_APIFY_TOKEN with your Apify API token.


๐Ÿš€ Setup Guide

Step 1 โ€” Get Your Confluence Credentials

Your Confluence credentials are the same as your Jira credentials if you use Atlassian Cloud:

  1. Domain: your-site.atlassian.net (your Atlassian domain)
  2. Email: Your Atlassian account email
  3. API Token: Generate one at https://id.atlassian.com/manage-profile/security/api-tokens

Note: This server works with Confluence Cloud only. Confluence Server and Data Center are not supported.

Step 2 โ€” Connect Your AI Assistant

๐Ÿ–ฑ๏ธ Cursor

Add to ~/.cursor/mcp.json:

{
"mcpServers": {
"confluence": {
"url": "https://mcp-servers--confluence-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐Ÿ’ป VS Code

Add to .vscode/mcp.json:

{
"servers": {
"confluence": {
"type": "http",
"url": "https://mcp-servers--confluence-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐ŸŒŠ Windsurf

Add to ~/.codeium/windsurf/model_config.json:

{
"mcpServers": {
"confluence": {
"serverUrl": "https://mcp-servers--confluence-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐Ÿค– Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
"mcpServers": {
"confluence": {
"url": "https://mcp-servers--confluence-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

Step 3 โ€” Enter Your Confluence Credentials in Actor Input

When running this Actor on Apify, enter your Confluence domain, email, and API token in the Actor input form.


๐Ÿ’ก Example Prompts

Say this...Tool(s) Used
"What Confluence spaces do I have access to?"get_spaces
"Show me info about the Engineering space"get_space_info
"Find all pages about authentication"search_pages
"Show me the content of the onboarding guide"get_page
"What are the child pages under the architecture page?"get_child_pages
"Create a page called 'Sprint 42 Retro' in the Team space"create_page
"Update the onboarding guide to add a new step"update_page
"Add a comment: Updated as of March 2026"add_comment
"Search for pages created by me this month"search_pages (CQL)

๐Ÿ” CQL Query Examples

Confluence Query Language is powerful โ€” here are examples for search_pages:

type=page AND text~"authentication"
type=page AND space="ENG" AND title~"API"
type=page AND creator=currentUser() ORDER BY created DESC
type=page AND lastModified >= "2026-01-01"

๐Ÿค– API & Automation

Trigger via Apify API

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('scraper_guru/confluence-mcp-server').start({
confluenceDomain: 'your-site.atlassian.net',
confluenceEmail: 'your@email.com',
confluenceApiToken: 'your-api-token',
});

Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('scraper_guru/confluence-mcp-server').start(
run_input={
'confluenceDomain': 'your-site.atlassian.net',
'confluenceEmail': 'your@email.com',
'confluenceApiToken': 'your-api-token',
}
)

Use With Jira MCP Server

Combine with the Jira MCP Server for the complete Atlassian experience:

  • Jira โ†’ track issues, sprints, and bugs
  • Confluence โ†’ read architecture docs, create retrospectives, search the knowledge base

๐Ÿ’ฐ Pricing

Pay per event. No monthly subscription. No idle charges.

EventPrice per call
Actor start$0.00005 (Apify platform default)
get_spaces$0.03
get_space_info$0.03
search_pages$0.05
get_page$0.05
get_child_pages$0.03
add_comment$0.03
update_page$0.08
create_page$0.08

A typical session searching and reading documentation costs less than $0.25.


๐Ÿ›ก๏ธ Security

  • API credentials are never stored โ€” provided per-Actor-run via encrypted input
  • All communication over HTTPS
  • Runs in a fully isolated container on Apify's infrastructure
  • Your Confluence data is never cached or shared

๐Ÿ”ฎ Roadmap

  • Attachments โ€” List and download page attachments
  • Labels โ€” Filter pages by label / add labels
  • Page history โ€” View version history of a page
  • Templates โ€” Create pages from space templates
  • Inline comments โ€” Support for inline comment threads

๐Ÿค Part of the Atlassian MCP Suite

ActorServiceStatus
Jira MCP ServerJira Cloudโœ… Live
Trello MCP ServerTrelloโœ… Live
Confluence MCP ServerConfluence Cloudโœ… This Actor
Asana MCP ServerAsana๐Ÿ“‹ Coming soon

๐Ÿ’ฌ Support & Contact


๐Ÿ“š References


๐Ÿš€ Get Started Now

  1. Click "Try for free" above
  2. Enter your Confluence domain, email, and API token in the input form
  3. Copy the MCP endpoint URL and paste it into your AI assistant config
  4. Start chatting โ€” "What Confluence spaces do I have?"

โญ Found this useful? Leave a review!

๐Ÿ’ฌ Questions or feature requests? Open a GitHub issue or email me.


Built by MuLIAICHI Also check out: Jira MCP Server | Trello MCP Server