Plane MCP Server

Official

get_issue_worklogs

Retrieve all worklogs for a specific issue by providing the project and issue UUIDs, enabling detailed tracking and management of task progress within Plane's project management system.

Instructions

Get all worklogs for a specific issue

Input Schema

NameRequiredDescriptionDefault
issue_idYesThe uuid identifier of the issue to get worklogs for
project_idYesThe 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" }
ID: y5g9z3v76n