Confluence MCP Server for Claude and Cursor

Hosted Confluence MCP for Claude, Cursor, and ChatGPT. Search, read, and edit pages and spaces with managed Atlassian OAuth.

Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Confluence Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Confluence now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools and Triggers

Tools
Triggers
Add Content LabelTool to add labels to a piece of content.
CQL SearchSearches for content in Confluence using Confluence Query Language (CQL).
Create BlogpostTool to create a new Confluence blog post.
Create Blogpost PropertyTool to create a property on a specified blog post.
Create Whiteboard PropertyTool to create a new content property on a whiteboard.
Create Footer CommentTool to create a footer comment on a Confluence page, blog post, attachment, or custom content.
Create PageTool to create a new Confluence page in a specified space.
Create Page PropertyTool to create a property on a Confluence page.
Create Private SpaceTool to create a private Confluence space.
Create SpaceTool to create a new Confluence space.
Create Space PropertyTool to create a new property on a Confluence space.
Create WhiteboardTool to create a new Confluence whiteboard.
Delete Blogpost PropertyTool to delete a blog post property.
Delete Page Content PropertyTool to delete a content property from a page by property ID.
Delete Whiteboard Content PropertyTool to delete a content property from a whiteboard by property ID.
Delete PageTool to delete a Confluence page.
Delete SpaceTool to delete a Confluence space by its key.
Delete Space PropertyTool to delete a space property.
Download AttachmentDownloads an attachment from a Confluence page and returns a publicly accessible S3 URL.
Get Attachment LabelsTool to list labels on an attachment.
Get AttachmentsTool to retrieve attachments of a Confluence page.
Get Audit LogsTool to retrieve Confluence audit records.
Get Blogpost by IDTool to retrieve a specific Confluence blog post by its ID.
Get Blogpost LabelsTool to retrieve labels of a specific Confluence blog post by ID.
Get Blogpost Like CountTool to get like count for a Confluence blog post.
Get Blogpost OperationsTool to retrieve permitted operations for a Confluence blog post.
Get Blog PostsTool to retrieve a list of blog posts.
Get Blog Posts For LabelTool to list all blog posts under a specific label.
Get Blogpost Version DetailsTool to retrieve details for a specific version of a blog post.
Get Blogpost VersionsTool to retrieve all versions of a specific blog post.
Get Child PagesTool to list all direct child pages of a given Confluence page.
Get Blog Post Content PropertiesTool to retrieve all content properties on a blog post.
Get Page Content PropertiesTool to retrieve all content properties on a page.
Get Content RestrictionsTool to retrieve restrictions on a Confluence content item.
Get Current UserTool to get information about the currently authenticated user — always scoped to the account tied to the configured connection, not arbitrary users.
Get Inline Comments for Blog PostTool to retrieve inline comments for a Confluence blog post.
Get LabelsTool to retrieve all labels in a Confluence site; use for label discovery when you need to list or page through labels.
Get Page LabelsTool to retrieve labels of a specific Confluence page by ID.
Get Labels for SpaceTool to list labels on a space.
Get Labels for Space ContentTool to list labels on all content in a space.
Get Page AncestorsTool to retrieve all ancestors for a given Confluence page by its ID.
Get Page by IDTool to retrieve a Confluence page by its ID.
Get Page Footer CommentsTool to retrieve footer (non-inline) comments for a Confluence page.
Get Page Inline CommentsTool to retrieve inline comments for a Confluence page.
Get Page Like CountTool to get like count for a Confluence page.
Get PagesTool to retrieve a paginated list of Confluence pages.
Get Page VersionsTool to retrieve all versions of a specific Confluence page.
Get Space by IDTool to retrieve a Confluence space by its ID.
Get Space ContentsTool to retrieve content in a Confluence space.
Get Space PropertiesTool to get properties of a Confluence space.
Get SpacesTool to retrieve a paginated list of Confluence spaces with optional filtering.
Get TasksTool to list Confluence tasks (action items) with filtering by assignee, creator, space, page, blog post, status, and dates.
Get Anonymous UserTool to retrieve information about the anonymous user.
Search ContentSearches for content by filtering pages from the Confluence v2 API with intelligent ranking.
Search UsersSearches for users using user-specific queries from the Confluence Query Language (CQL).
Update BlogpostTool to update a Confluence blog post's title or content.
Update Blogpost PropertyTool to update a property of a specified blog post.
Update Page Content PropertyTool to update a content property on a Confluence page.
Update Whiteboard Content PropertyTool to update a content property on a whiteboard.
Update PageTool to update an existing Confluence page, replacing the entire page content.
Update Space PropertyTool to update a space property.
Update TaskTool to update a Confluence task status.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Confluence tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Create a new Confluence page titled "Q2 Project Plan" in the Marketing space')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Why Use Composio?

AI Native Confluence Integration

  • Supports both Confluence MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Confluence data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Confluence access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Confluence
  • Scoped, least privilege access to Confluence resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Confluence with Composio?

No, you can get started immediately using Composio's built-in Confluence app. For production, we recommend configuring your own OAuth credentials.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.