confluence_space_list
List Confluence spaces with optional filters by keys, type, and status. Supports pagination via cursor.
Instructions
List Confluence spaces (one page per call). Optional filters: keys (Vec), type (common values: global, personal, collaboration, knowledge_base, onboarding — passed through to the API verbatim, so other template-derived types Atlassian returns are also accepted), status (common values: current, archived). Filters combine as AND. Pass the returned next_cursor back as cursor to fetch the next page. limit defaults to 25. Mirrors omni-dev atlassian confluence space list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keys | No | Filter to specific space keys. Combined with `type`/`status` as AND. | |
| type | No | Filter by space type. Common values: `global`, `personal`, `collaboration`, `knowledge_base`, `onboarding`. Passed through to the Confluence v2 API verbatim. | |
| limit | No | Maximum number of spaces per page. Defaults to 25. | |
| cursor | No | Pagination cursor (use `next_cursor` from a previous call). | |
| status | No | Filter by space status. Common values: `current`, `archived`. Passed through to the Confluence v2 API verbatim. |