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
- Go to Auth Developer Portal
- Create a new OAuth application
- Configure your redirect URI
- 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.allwrite:confluence-contentread:confluence-space.summaryread:confluence-propsoffline_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
confluence_search
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