get_issue_type
Retrieve details of a specific issue type by providing its project and type identifiers through the Plane MCP Server, enabling efficient project management and issue tracking.
Instructions
Get details of a specific issue type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The uuid identifier of the project containing the issue type | |
type_id | Yes | The uuid identifier of the issue type to get |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The uuid identifier of the project containing the issue type",
"type": "string"
},
"type_id": {
"description": "The uuid identifier of the issue type to get",
"type": "string"
}
},
"required": [
"project_id",
"type_id"
],
"type": "object"
}