Skip to main content
Glama

Plane MCP Server

Official
by makeplane

create_worklog

Generate a new worklog for a specific issue in a project, capturing details such as description, duration, and relevant identifiers to track time and tasks efficiently.

Instructions

Create a new worklog for an issue

Input Schema

NameRequiredDescriptionDefault
issue_idYesThe uuid identifier of the issue to create worklog for
project_idYesThe uuid identifier of the project containing the issue
worklog_dataYesThe data for creating the worklog

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 create worklog for", "type": "string" }, "project_id": { "description": "The uuid identifier of the project containing the issue", "type": "string" }, "worklog_data": { "additionalProperties": false, "description": "The data for creating the worklog", "properties": { "created_at": { "format": "date-time", "type": "string" }, "description": { "type": "string" }, "duration": { "description": "The duration of the worklog in minutes", "minimum": 0, "type": "integer" }, "issue_id": { "format": "uuid", "type": "string" }, "logged_by_id": { "format": "uuid", "type": "string" }, "project_id": { "format": "uuid", "type": "string" }, "updated_at": { "format": "date-time", "type": "string" }, "workspace_id": { "format": "uuid", "type": "string" } }, "required": [ "description", "duration" ], "type": "object" } }, "required": [ "project_id", "issue_id", "worklog_data" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/makeplane/plane-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server