Confluence
Service domainDOCUMENTS
Arcade Optimized
Arcade.dev LLM tools for Confluence
14tools
Confluence Toolkit
The Confluence toolkit connects Arcade to Atlassian Confluence, enabling LLMs to read, write, search, and manage Confluence content on behalf of authenticated users.
Capabilities
- Page management: Create pages in a space, retrieve single or multiple pages by ID or title (with a batch endpoint for efficiency), update content, and rename pages.
- Space and cloud discovery: List all spaces, fetch space details by ID or key, retrieve available Atlassian Cloud instances, and identify the current user's profile and cloud access.
- Attachments: List workspace attachments and retrieve attachments for a specific page by ID or title.
- Navigation and hierarchy: Traverse page trees by listing direct children with cursor-based pagination, enabling recursive exploration of nested content.
- Search: Full-text search across the authenticated user's Confluence workspace using AND/OR logic with
must_contain_allandcan_contain_anyparameters; case-insensitive.
OAuth
This toolkit uses OAuth 2.0 via the Atlassian provider. Arcade handles the OAuth flow automatically. See the Atlassian auth provider docs for setup details.
Available tools(14)
14 of 14 tools
Operations
Behavior
| Tool name | Description | Secrets | |
|---|---|---|---|
Create a new page at the root of the given space. | |||
Get attachments for a page by its ID or title.
If a page title is provided, then the first page with an exact matching title will be returned. | |||
Get available Atlassian Clouds. | |||
Retrieve a SINGLE page's content by its ID or title.
If a title is provided, then the first page with an exact matching title will be returned.
IMPORTANT: For retrieving MULTIPLE pages, use `get_pages_by_id` instead
for a massive performance and efficiency boost. If you call this function multiple times
instead of using `get_pages_by_id`, then the universe will explode. | |||
Get the content of MULTIPLE pages by their ID in a single efficient request.
IMPORTANT: Always use this function when you need to retrieve content from more than one page,
rather than making multiple separate calls to get_page, because this function is significantly
more efficient than calling get_page multiple times. | |||
Get the details of a space by its ID or key. | |||
List attachments in a workspace | |||
List one page of direct children for a Confluence content item.
Call this again with a returned child ID to continue exploring that child's children. For
pagination, send only pagination_token and optionally limit. | |||
Get the content of multiple pages by their ID | |||
List all spaces sorted by name in ascending order. | |||
Rename a page by changing its title. | |||
Search for content in Confluence.
The search is performed across all content in the authenticated user's Confluence workspace.
All search terms in Confluence are case insensitive.
You can use the parameters in different ways:
- must_contain_all: For AND logic - content must contain ALL of these
- can_contain_any: For OR logic - content can contain ANY of these
- Combine them: must_contain_all=['banana'] AND can_contain_any=['database', 'guide'] | |||
Update a page's content. | |||
CALL THIS TOOL FIRST to establish user profile context.
Get information about the currently logged-in user and their available Confluence clouds. |
Last updated on