bb_ls_workspaces
Retrieve and display a formatted Markdown list of Bitbucket workspaces, including slugs, names, and membership roles. Use configured credentials and optional pagination for efficient workspace management.
Instructions
Lists workspaces within your Bitbucket account. Returns a formatted Markdown list showing workspace slugs, names, and membership role. Requires Bitbucket credentials to be configured.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for retrieving the next set of results. Obtained from previous response when more results are available. | |
limit | No | Maximum number of items to return (1-100). Controls the response size. Defaults to 25 if omitted. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cursor": {
"description": "Pagination cursor for retrieving the next set of results. Obtained from previous response when more results are available.",
"type": "string"
},
"limit": {
"description": "Maximum number of items to return (1-100). Controls the response size. Defaults to 25 if omitted.",
"exclusiveMinimum": 0,
"maximum": 100,
"type": "integer"
}
},
"type": "object"
}