execute_cql_search
Run CQL queries on Confluence to search and retrieve pages, specifying the query string and results limit for targeted content discovery.
Instructions
Execute a CQL query on Confluence to search pages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cql | Yes | CQL query string | |
limit | No | Number of results to return |
Input Schema (JSON Schema)
{
"properties": {
"cql": {
"description": "CQL query string",
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of results to return",
"type": "integer"
}
},
"required": [
"cql"
],
"type": "object"
}