manage_spaces
Unified tool for listing and getting Confluence spaces.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
action | string | Yes | list, get, or get_by_key |
space_id | string | For get | Space ID |
key | string | For get_by_key | Space key (e.g., DEV) |
limit | int | No | Results per page (default 25) |
cursor | string | No | Pagination cursor for next page |
type | string | No | Filter: global or personal |
status | string | No | Filter: current or archived |
Actions
Section titled “Actions”List all spaces the authenticated user can access.
{ "action": "list", "type": "global", "limit": 10}Response:
[ { "id": "131073", "key": "DEV", "name": "Development", "type": "global", "status": "current", "homepage_id": "131074", "web_url": "/wiki/spaces/DEV" }]Get a space by its ID.
{ "action": "get", "space_id": "131073"}get_by_key
Section titled “get_by_key”Get a space by its key.
{ "action": "get_by_key", "key": "DEV"}