Plane MCP Server

Official

delete_worklog

Remove a specific worklog from an issue in a project by specifying the project, issue, and worklog IDs using the Plane MCP Server.

Instructions

Delete a worklog

Input Schema

NameRequiredDescriptionDefault
issue_idYesThe uuid identifier of the issue containing the worklog
project_idYesThe uuid identifier of the project containing the issue
worklog_idYesThe uuid identifier of the worklog to delete

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "issue_id": { "description": "The uuid identifier of the issue containing the worklog", "type": "string" }, "project_id": { "description": "The uuid identifier of the project containing the issue", "type": "string" }, "worklog_id": { "description": "The uuid identifier of the worklog to delete", "type": "string" } }, "required": [ "project_id", "issue_id", "worklog_id" ], "type": "object" }
ID: y5g9z3v76n