clickup_get_spaces
List all Spaces in a ClickUp Workspace. Use to discover available spaces, filter by archived status, and control output with limit and offset.
Instructions
List the Spaces in a Workspace.
When to Use:
Discovering what Spaces exist before drilling into Folders/Lists.
Checking archived Spaces with
archived=True.
When NOT to Use:
To fetch a single Space's full detail, including statuses/features (use
clickup_get_space).
Returns: A markdown list (or JSON) of Spaces with id/private/multiple_assignees, one row per Space.
Pagination:
ClickUp does not paginate this endpoint — it returns every Space in one
response. limit/offset slice that response client-side, and limit is
further capped at MAX_DISPLAY_ROWS (50) regardless of the requested value,
to keep the result well under the MCP response-size budget.
Examples: params = {"team_id": "90130000000", "archived": False, "limit": 20, "offset": 0}
Error Handling: 401/403 mean the token can't see this Workspace; 404 means team_id is wrong.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |