get_issue_worklogs
Retrieve all worklogs associated with a specific issue in a project using the Plane MCP Server, facilitating detailed tracking and management of task progress.
Instructions
Get all worklogs for a specific issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | The uuid identifier of the issue to get worklogs for | |
project_id | Yes | The uuid identifier of the project containing the issue |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issue_id": {
"description": "The uuid identifier of the issue to get worklogs for",
"type": "string"
},
"project_id": {
"description": "The uuid identifier of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}