list_workspace_projects
List every project in a workspace the bot can see — name, slug, id, status.
Read-only tool.
List every project in a workspace the bot can see — name, slug, id, status. Use to discover projects before drilling in with get_project, list_project_assets, list_project_tasks, etc.
Input
| Property | Type | Required | Description |
|---|---|---|---|
workspaceId | string | yes | UUID of the workspace. |
JSON Schema
{
"type": "object",
"properties": {
"workspaceId": {
"type": "string",
"description": "UUID of the workspace."
}
},
"required": [
"workspaceId"
],
"additionalProperties": false
}