CQL (Confluence Query Language) is used byDocumentation Index
Fetch the complete documentation index at: https://mcp-atlassian.soomiles.com/llms.txt
Use this file to discover all available pages before exploring further.
confluence_search to find content. You can also use simple text queries that automatically use siteSearch.
Basic Syntax
CQL queries follow the pattern:field operator value
Common Operators
| Operator | Description | Example |
|---|---|---|
= | Exact match | type = "page" |
!= | Not equal | type != "comment" |
~ | Contains text | title ~ "meeting notes" |
IN | Match any in list | space IN ("DEV", "TEAM") |
>, <, >=, <= | Comparison | created >= "2024-01-01" |
Common Fields
| Field | Description | Example |
|---|---|---|
type | Content type | type = "page" or type = "blogpost" |
space | Space key | space = "DEV" |
title | Page title | title ~ "architecture" |
text | Full text search | text ~ "API documentation" |
label | Content label | label = "approved" |
creator | Created by | creator = "john.doe" |
created | Creation date | created >= "2024-01-01" |
lastModified | Last modified | lastModified >= "2024-06-01" |
ancestor | Parent page ID | ancestor = "12345678" |
parent | Direct parent ID | parent = "12345678" |
Search Types
CQL Query
Pass a CQL string directly:Simple Text Search
Pass plain text —confluence_search auto-detects and uses siteSearch: