Lists every workspace the user can access, with workspace_id, uniqueName (slug), and display name.
Behavior:
- Read-only. Page size 20, sorted by name. Pass nextCursor back as cursor to fetch the next page.
- Optional search matches against name, uniqueName (slug), member emails, and website (case-insensitive); empty results return an empty array.
- Other perspective tools accept either workspace_id or uniqueName interchangeably.
- Returns description for each workspace — use it to match the right workspace based on context.
- Does NOT mark which workspace is the caller's default — call workspace_get_default once and compare ids client-side if you need to highlight it.
When to use this tool:
- The user names a specific workspace and you need its workspace_id (filter with search).
- Showing the user the full set of workspaces they can pick from.
When NOT to use this tool:
- You just need the user's default workspace — use workspace_get_default.
- You already have a workspace_id and want details — use workspace_get.
Connector