confluence_cql_search
Search Confluence using CQL for advanced queries on pages, blog posts, attachments, and comments. Supports complex operators and pagination.
Instructions
Search Confluence using CQL (Confluence Query Language). Use this for advanced searches of pages, blog posts, attachments, and comments. Supports complex queries with operators like AND, OR, text~, created>=, etc. Results are paginated - if you don't find what you need, use the returned cursor to fetch more pages until found or no more results. Output is trimmed by default (drops _links, _expandable, body content, etc.); pass full=true to receive the raw Confluence response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cql | Yes | The CQL query string. Examples: "type=page AND space=DEV", "text~\"search term\"", "creator=currentUser() AND created>=now(\"-7d\")" | |
| full | No | If true, bypass response trimming and return the raw Confluence API response. | |
| limit | No | Maximum number of results (default 25, max 250) | |
| cursor | No | Cursor for pagination (from previous response) |