delete_worklog
Remove a specific worklog from an issue within a project using the Plane MCP Server. Specify the project_id, issue_id, and worklog_id to complete the deletion.
Instructions
Delete a worklog
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | The uuid identifier of the issue containing the worklog | |
project_id | Yes | The uuid identifier of the project containing the issue | |
worklog_id | Yes | The 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"
}