Confluence MCP Server
Pricing
from $80.00 / 1,000 create pages
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
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
a day ago
Last modified
Categories
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.
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
| Tool | MCP Available? | Hosted on Apify? |
|---|---|---|
| Confluence | โ This Actor | โ |
| Notion | Partial | โ |
| 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
| Tool | Description |
|---|---|
get_spaces | List all Confluence spaces the user has access to |
get_space_info | Get detailed info about a specific space |
search_pages | Search using CQL (Confluence Query Language) โ find pages by keyword, space, or author |
get_page | Read the full content of a page, including its body text and version |
get_child_pages | List child pages under a parent page |
create_page | Create a new page in any space, optionally nested under a parent |
update_page | Update the content and title of an existing page |
add_comment | Add a footer comment to a page |
๐ณ When to Use Which Tool
Exploring the wiki?โโโ get_spaces โ get_space_info โ search_pagesReading 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:
- Domain:
your-site.atlassian.net(your Atlassian domain) - Email: Your Atlassian account email
- 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 DESCtype=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 ApifyClientclient = 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.
| Event | Price 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
| Actor | Service | Status |
|---|---|---|
| Jira MCP Server | Jira Cloud | โ Live |
| Trello MCP Server | Trello | โ Live |
| Confluence MCP Server | Confluence Cloud | โ This Actor |
| Asana MCP Server | Asana | ๐ Coming soon |
๐ฌ Support & Contact
- ๐ง Email: mustaphaliaichi@gmail.com
- ๐ฌ GitHub: github.com/MuLIAICHI
- ๐ Issues: GitHub Issues
๐ References
- Confluence REST API v2 Docs
- CQL (Confluence Query Language)
- Model Context Protocol Spec
- Apify MCP Server Docs
๐ Get Started Now
- Click "Try for free" above
- Enter your Confluence domain, email, and API token in the input form
- Copy the MCP endpoint URL and paste it into your AI assistant config
- 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