All connectors

Confluence

Confluence Connector for AI Agents

Give agents tools for secure, real-time access to fetch, search, write, and sync across every system, with replication, entity mapping, and auth built-in.

20,000+
community members
6,000+
daily active companies
2PB+
synced/month
900+
contributors

About this Connector

The Confluence agent connector equips AI agents to interact with Confluence through strongly typed, well-documented tools. It provides read access to Confluence spaces, pages, blog posts, groups, and audit logs via the Confluence Cloud REST API.

CRM

Sales Analytics

Customer Data

wiki, knowledge management, team collaboration

Version Information

Package version

0.1.0

Connector version

1.0.0

SDK commit

e50d6dd2afcab025208f4c255431a51c213a1c5c

Support Open Source

Check us out on Github and join the Airbyte community

Github

Installation & Usage

Get started with the Confluence connector in minutes

1

Install Package

Using uv or pip

bash

Copy
uv pip install airbyte-agent-confluence

2

Import

Initialize and use

python

Copy
from airbyte_agent_confluence import ConfluenceConnector
from airbyte_agent_confluence.models import ConfluenceAuthConfig

connector = ConfluenceConnector(
    auth_config=ConfluenceAuthConfig(
        username="<Your Atlassian account email address>",
        password="<Your Confluence API token from https://id.atlassian.com/manage-profile/security/api-tokens>"
    )
)

3

Tool

Add tools to your agent

python

Copy
@agent.tool_plain # assumes you're using Pydantic AI
@ConfluenceConnector.tool_utils
async def confluence_execute(entity: str, action: str, params: dict | None = None):
    return await connector.execute(entity, action, params or {})

Supported Entities & Actions

Access all your Confluence data through a unified API

Lorem ipsum

Lorem ipsum

| Entity | Actions |\n|--------|---------|\n| Spaces | [List](./REFERENCE.md#spaces-list), [Get](./REFERENCE.md#spaces-get), [Search](./REFERENCE.md#spaces-search) |\n| Pages | [List](./REFERENCE.md#pages-list), [Get](./REFERENCE.md#pages-get), [Search](./REFERENCE.md#pages-search) |\n| Blog Posts | [List](./REFERENCE.md#blog-posts-list), [Get](./REFERENCE.md#blog-posts-get), [Search](./REFERENCE.md#blog-posts-search) |\n| Groups | [List](./REFERENCE.md#groups-list), [Search](./REFERENCE.md#groups-search) |\n| Audit | [List](./REFERENCE.md#audit-list), [Search](./REFERENCE.md#audit-search) |

Example Prompts

The Confluence connector is optimized to handle prompts like these

Lorem ipsum

List all spaces in my Confluence instance - Show me the most recently created pages - List all blog posts - Show me details for a specific page - List all groups in Confluence - Show me recent audit log entries - Get details about a specific space - Show me blog post details - Find pages created in the last 7 days - What spaces have the most pages? - Show me all pages in a specific space - Find blog posts by a specific author - What audit events happened this week?

Why Airbyte for AI Agents?

Built for production AI workloads with enterprise-grade reliability

Agent-Native Design

Structured, LLM-friendly schemas optimized for AI agent consumption with natural language query support.

Secure Authentication

Built-in OAuth 2.0 handling with automatic token refresh. No hard-coded credentials.

Production Ready

Battle-tested connectors with comprehensive error handling, logging, and retry logic.

Open Source

Fully open source under the MIT license. Contribute, customize, and extend freely.

Works with your favorite frameworks

Use the Confluence connector with any AI agent framework

đŸĻœ

LangChain

đŸĻ™

LlamaIndex

🤖

CrewAI

⚡

AutoGen

🧠

OpenAI Agents SDK

🔮

Claude Agents SDK

Frequently Asked Questions

Didn't find your answer? Please don't hesitate to reach out.

How do I authenticate with Confluence?

The Confluence connector supports HTTP Basic authentication using an Atlassian account email address and a Confluence API token (generated at https://id.atlassian.com/manage-profile/security/api-tokens). In hosted mode, credentials are stored securely in Airbyte Cloud and you authenticate using Airbyte client credentials instead.

Can I use this connector with any AI agent framework?

The connector is compatible with any Python-based AI agent framework including LangChain, LlamaIndex, CrewAI, Pydantic AI, and custom implementations.

Does this connector support write operations?

Currently, the Confluence connector focuses on read operations only. Write operations such as creating pages, updating existing pages, deleting spaces, uploading attachments, or managing space permissions are not supported at this time.

How is this different from the Airbyte data connector?

Agent connectors are specifically designed for AI agents and LLM applications. They provide natural language interfaces, optimized response formats, and seamless integration with agent frameworks, unlike traditional ETL-focused connectors.

Will there be a platform for agent connectors?

The hosted version with secure credential storage through Airbyte Cloud is already available. See the hosted usage section in the documentation for setup instructions.

20,000+
community members
6,000+
daily active companies
2PB+
synced/month
900+
contributors