confluence-mcp
Search and retrieve content from Confluence pages, list spaces, and get page content by ID to enable context-aware AI operations.
Retrieve Jira ticket summaries, generate weekly reports with business benefits, search tickets by email, and produce weekly progress and manager review drafts.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@confluence-mcpsearch for onboarding guide in Confluence"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Confluence MCP Server
A Model Context Protocol (MCP) server that enables AI assistants to search and retrieve content from Confluence pages. This allows AI to understand context and design documentation before making changes.
Features
Search Confluence Pages: Search for pages by title, content, or keywords
Retrieve Page Content: Get full page content including body, metadata, and attachments
List Spaces: Browse available Confluence spaces
Get Page by ID: Retrieve specific pages by their Confluence ID
Context-Aware Operations: AI can understand existing documentation before suggesting changes
Weekly status drafting (full-stack): Generate weekly progress and weekly manager review drafts from Jira activity, edit in a small web UI, and copy/paste into Confluence
Related MCP server: Jira & Confluence MCP Server
Problem this solves
Weekly updates are easy to forget and hard to write consistently. This project turns your Jira activity (optionally combined with a few Confluence “context” pages) into manager-ready weekly drafts with a repeatable structure: highlights, progress, risks, next steps, and asks.
Screenshot

Prerequisites
Python 3.11+ recommended (works with your existing MCP setup)
Confluence Cloud or Server instance
Confluence API token or username/password for authentication
Node.js 18+ (for the web UI)
Installation
Option A: Using venv (recommended)
Create a venv and install dependencies:
python3 -m venv .venv
.venv/bin/python -m pip install -r requirements.txtConfigure by creating a
.envfile:
cp env.example .env
# Edit .env with your Confluence credentialsOption B: Docker Compose
docker compose -f docker-compose.yml up --buildConfiguration
The server requires the following environment variables:
CONFLUENCE_URL: Your Confluence instance URLFor Cloud:
https://your-domain.atlassian.netFor Server:
https://confluence.your-domain.com
CONFLUENCE_EMAIL: Your Confluence email/usernameCONFLUENCE_API_TOKEN: Your Confluence API token (preferred) or password
Note: The server automatically detects Confluence Cloud vs Server and uses the correct API endpoints (/wiki/rest/api/ for Cloud, /rest/api/ for Server).
Getting a Confluence API Token
Go to https://id.atlassian.com/manage-profile/security/api-tokens
Click "Create API token"
Copy the token and use it in your configuration
Quick Start
Test your connection:
python3 python/test_connection.pyStart the weekly draft backend API:
PYTHONPATH="python/backend:python:." .venv/bin/python -m uvicorn app.main:app --host 0.0.0.0 --port 8000Start the web UI:
cd frontend
npm install
npm run devThen open http://localhost:5173.
Configure your MCP client (see
docs/CONFIGURATION.mdfor details)
Usage
Testing the Connection
Before configuring your MCP client, test that everything works:
# Set environment variables or use .env file
export CONFLUENCE_URL="https://your-domain.atlassian.net"
export CONFLUENCE_EMAIL="your-email@example.com"
export CONFLUENCE_API_TOKEN="your-api-token"
# Run the test script
python3 python/test_connection.pyRunning as MCP Server
The server implements the MCP protocol and can be used with MCP-compatible clients like Cursor, Claude Desktop, etc.
Configure in your MCP client settings:
{
"mcpServers": {
"confluence": {
"command": "python",
"args": ["/path/to/confluence-mcp/python/server.py"],
"env": {
"CONFLUENCE_URL": "https://your-domain.atlassian.net",
"CONFLUENCE_EMAIL": "your-email@example.com",
"CONFLUENCE_API_TOKEN": "your-api-token"
}
}
}
}Available Tools
search_pages: Search for Confluence pages by query
Parameters:
query(string),space_key(optional),limit(optional, default: 10)
get_page: Get a specific page by ID
Parameters:
page_id(string)
get_page_content: Get the full content of a page
Parameters:
page_id(string),expand(optional, default: "body.storage,version,space")
list_spaces: List all accessible Confluence spaces
Parameters:
limit(optional, default: 50)
search_by_title: Search pages by exact or partial title match
Parameters:
title(string),space_key(optional),limit(optional)
get_jira_summary: Get a summary of Jira tickets assigned to you from the last N days
Parameters:
days(optional, default: 14),save_to_file(optional, default: true)Returns a formatted summary grouped by status and issue type
Automatically saves to
2026/YYYYMM/jira_summary_YYYYMMDD.mdifsave_to_fileis trueUses the same Atlassian credentials as Confluence (CONFLUENCE_URL, CONFLUENCE_EMAIL, CONFLUENCE_API_TOKEN)
get_jira_weekly_report: Generate a high-level weekly report with business benefits
Parameters:
days(optional, default: 14),save_to_file(optional, default: true)Analyzes tickets to extract value propositions and formats them for stakeholders
Categorizes into "This Week" (Done/In Progress/In Review) and "Next Week" (To Do)
Automatically saves to
2026/YYYYMM/weekly_report_YYYYMMDD.mdifsave_to_fileis truePerfect for weekly status updates to management
search_jira_tickets_by_email: Search for Jira tickets by a specific user's email address
Parameters:
email(required),days(optional, default: 14),search_type(optional, default: "assignee")Automatically looks up the user's Account ID from their email, then searches for their tickets
search_typecan be: "assignee" (tickets assigned to user), "reporter" (tickets reported by user), or "all" (both)Returns a formatted summary grouped by status
Useful for understanding what a team member has been working on
Note: Jira Cloud requires Account ID (not email) for searches. This tool handles the lookup automatically.
generate_weekly_drafts: Generate two markdown drafts (weekly progress + manager review)
Parameters:
week_start(optional ISO date),week_end(optional ISO date),jira_days_lookback(optional),confluence_page_ids(optional array),save_to_files(optional),save_to_db(optional)Saves markdown to
2026/YYYYMM/and (optionally) stores drafts in SQLite for the web UI
Example Usage
Once configured, AI assistants can use the server like this:
User: "Search for pages about database design"
AI: [Uses search_pages tool to find relevant pages]
User: "What does the Beta Pipeline design document say?"
AI: [Uses search_pages to find the document, then get_page_content to retrieve it]
User: "Summarize my Jira tickets from the last 2 weeks"
AI: [Uses get_jira_summary to fetch and summarize tickets, saves to 2026/YYYYMM folder]
User: "Generate a weekly report with business benefits from my Jira tickets"
AI: [Uses get_jira_weekly_report to create stakeholder-friendly weekly update]
User: "What has user@example.com been working on in the last 2 weeks?"
AI: [Uses search_jira_tickets_by_email to find and summarize their tickets]
User: "Generate my weekly progress and manager review drafts for last week"
AI: [Uses generate_weekly_drafts tool, returns two markdown drafts]Security Notes
Never commit your
.envfile or API tokens to version controlUse API tokens instead of passwords when possible
The server respects Confluence permissions - users can only access pages they have permission to view
If you accidentally shared a token in docs or chat, rotate it immediately in Atlassian and replace with placeholders
Troubleshooting
Authentication Errors
Verify your API token is correct
Check that your email matches your Confluence account
Ensure your Confluence URL is correct (include https://)
Permission Errors
The API token must belong to a user with appropriate Confluence permissions
Some pages may be restricted and require specific permissions
Connection Errors
Verify your Confluence URL is accessible
Check network connectivity
For Confluence Server, ensure the REST API is enabled
Development
To extend the server with additional functionality:
Add new tools in
python/server.pyfollowing the MCP tool formatImplement the Confluence API calls in
python/confluence_client.pyUpdate this README with new tool documentation
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jyphotography/confluence-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server