swit-workspace-list
Retrieve a list of workspaces with pagination and filtering options such as name, offset, and limit, integrating with Swit collaboration tools via the MCP server.
Instructions
Retrieve list of workspaces
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| name | No | ||
| offset | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"name": {
"type": "string"
},
"offset": {
"type": "string"
}
},
"type": "object"
}