Skip to main content
FuseFuse
IntegrationsConfluenceActions

Search Confluence content

Search Confluence page metadata with bounded text and space filters. Runtime builds escaped CQL; contracts never expose raw CQL. Catalog change_action_ids lists this action for incremental modified-page discovery only — complete watermark reconciliation also requires pages.list(status=trashed) plus periodic ACL/full reconciliation.

Agent markdown

content.search · Confluence · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • read:content-details:confluence
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
textstringNomaxLength 500
space_keystringNominLength 1; maxLength 255
include_archivedbooleanNo
cursorstringNominLength 1; maxLength 2048
page_sizeintegerNominimum 1; maximum 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
pagesarray<object>YesmaxItems 100
pages[]objectYesadditionalProperties false
pages[].idstringYesminLength 1; maxLength 64
pages[].titlestringYesmaxLength 512
pages[].statusstringYesenum current | archived | trashed
pages[].space_idstringYesminLength 1; maxLength 64
pages[].parent_idstringNominLength 1; maxLength 64
pages[].parent_typestringNominLength 1; maxLength 64
pages[].author_idstringNominLength 1; maxLength 64
pages[].created_atstringNomaxLength 64
pages[].updated_atstringNomaxLength 64
pages[].revisionstringNomaxLength 64
pages[].urlstringNomaxLength 2048
next_cursorstringNominLength 1; maxLength 2048

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "text": {
      "type": "string",
      "maxLength": 500
    },
    "space_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "include_archived": {
      "type": "boolean"
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "pages": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "title": {
            "type": "string",
            "maxLength": 512
          },
          "status": {
            "type": "string",
            "enum": [
              "current",
              "archived",
              "trashed"
            ]
          },
          "space_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "parent_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "parent_type": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "author_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "created_at": {
            "type": "string",
            "maxLength": 64
          },
          "updated_at": {
            "type": "string",
            "maxLength": 64
          },
          "revision": {
            "type": "string",
            "maxLength": 64
          },
          "url": {
            "type": "string",
            "maxLength": 2048
          }
        },
        "required": [
          "id",
          "title",
          "status",
          "space_id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048
    }
  },
  "required": [
    "pages"
  ]
}