get_label
Retrieve detailed information about a specific label within a project using the Plane MCP Server. Provide the project and label IDs to access label data quickly and accurately.
Instructions
Get details of a specific label
Input Schema
Name | Required | Description | Default |
---|---|---|---|
label_id | Yes | The uuid identifier of the label to get | |
project_id | Yes | The uuid identifier of the project containing the label |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"label_id": {
"description": "The uuid identifier of the label to get",
"type": "string"
},
"project_id": {
"description": "The uuid identifier of the project containing the label",
"type": "string"
}
},
"required": [
"project_id",
"label_id"
],
"type": "object"
}