IntegrateIntegrate
Integrations

Confluence Cloud Integration

Manage Confluence spaces, pages, search, comments, and attachments

The Confluence Cloud integration provides access to manage Confluence spaces, pages, search, comments, and attachments through the Integrate MCP server.

Installation

The Confluence Cloud integration is included with the SDK:

import { confluenceIntegration } from "integrate-sdk/server";

Setup

1. Create a Confluence Cloud OAuth App

  1. Go to Auth Developer Portal
  2. Create a new OAuth application
  3. Configure your redirect URI
  4. Note your Client ID and Client Secret

2. Configure the Integration on Your Server

Add the Confluence Cloud integration to your server configuration. The integration automatically reads CONFLUENCE_CLIENT_ID and CONFLUENCE_CLIENT_SECRET from your environment variables:

import { createMCPServer, confluenceIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    confluenceIntegration({
      scopes: ["read:confluence-content.all", "write:confluence-content", "read:confluence-space.summary", "read:confluence-props", "offline_access"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

confluenceIntegration({
  clientId: process.env.CUSTOM_CONFLUENCE_ID,
  clientSecret: process.env.CUSTOM_CONFLUENCE_SECRET,
      scopes: ["read:confluence-content.all", "write:confluence-content", "read:confluence-space.summary", "read:confluence-props", "offline_access"], // Optional
});

3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

import { client } from "integrate-sdk";

await client.authorize("confluence");
const result = await client.confluence.listAccessibleResources({});

console.log(result);

If you're using a custom client, add the integration to the integrations array:

import { createMCPClient, confluenceIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [confluenceIntegration()],
});

Configuration Options

Prop

Type

Default Scopes

These defaults are applied unless you override scopes in the integration config:

  • read:confluence-content.all
  • write:confluence-content
  • read:confluence-space.summary
  • read:confluence-props
  • offline_access

Tools

confluence_list_accessible_resources

List accessible resources

No parameters.

confluence_list_spaces

List spaces

Prop

Type

confluence_get_space

Get space

Prop

Type

confluence_list_pages

List pages

Prop

Type

confluence_get_page

Get page

Prop

Type

confluence_create_page

Create page

Prop

Type

confluence_update_page

Update page

Prop

Type

confluence_delete_page

Delete page

Prop

Type

Search

Prop

Type

confluence_list_comments

List comments

Prop

Type

confluence_create_comment

Create comment

Prop

Type

confluence_list_attachments

List attachments

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: OAuth

On this page