list-labels
Retrieve all labels within a Plane project to organize and categorize issues. Supports pagination for handling large label sets.
Instructions
List all labels in a project with optional pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor in format 'value:offset:is_prev' (optional) | |
| per_page | No | Number of items per page (default: 100, max: 100) | |
| project_id | Yes | ID of the project to get labels from |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor in format 'value:offset:is_prev' (optional)",
"type": "string"
},
"per_page": {
"description": "Number of items per page (default: 100, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"project_id": {
"description": "ID of the project to get labels from",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}