list_spaces
Generate a filtered list of accessible Confluence spaces with pagination support. Configure results limit and cursor for efficient space management.
Instructions
List all accessible Confluence spaces (filtered by allowed spaces)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Cursor for pagination (from _links.next) | |
| limit | No | Maximum results (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Cursor for pagination (from _links.next)",
"type": "string"
},
"limit": {
"default": 50,
"description": "Maximum results (default: 50)",
"type": "number"
}
},
"type": "object"
}