> ## Documentation Index
> Fetch the complete documentation index at: https://docs.guild.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Confluence

> Give agents authenticated access to the Confluence Cloud REST API.

The `@guildai-services/guildai~confluence` package provides agents with access to Confluence Cloud through Guild's OAuth 2.0 integration.

## Authentication

* **Type:** OAuth 2.0 (Atlassian Cloud)

### Setup

<Steps>
  <Step title="Open Credentials">Go to **Credentials** in Guild.</Step>
  <Step title="Connect Confluence">Click **Confluence** and authorize access through Atlassian.</Step>
</Steps>

## Usage

```typescript theme={null}
import { confluenceTools } from "@guildai-services/guildai~confluence"
import { llmAgent } from "@guildai/agents-sdk"

export default llmAgent({
  description: "An agent that manages Confluence pages",
  tools: { ...confluenceTools },
})
```
