list_labels
Retrieve all labels associated with a specific project in Plane's project management system using the integrated MCP server for streamlined organization and categorization.
Instructions
Get all labels for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project to get labels for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The uuid identifier of the project to get labels for",
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}