MCP Atlassian

by sooperset
Verified

jira_add_worklog

Add a worklog entry to a Jira issue by specifying the issue key, time spent, and optional comment or start time using the MCP Atlassian server.

Instructions

Add a worklog entry to a Jira issue

Input Schema

NameRequiredDescriptionDefault
commentNoOptional comment for the worklog in Markdown format
issue_keyYesJira issue key (e.g., 'PROJ-123')
startedNoOptional start time in ISO format. If not provided, the current time will be used. Example: '2023-08-01T12:00:00.000+0000'
time_spentYesTime spent in Jira format. Examples: '1h 30m' (1 hour and 30 minutes), '1d' (1 day), '30m' (30 minutes), '4h' (4 hours)

Input Schema (JSON Schema)

{ "properties": { "comment": { "description": "Optional comment for the worklog in Markdown format", "type": "string" }, "issue_key": { "description": "Jira issue key (e.g., 'PROJ-123')", "type": "string" }, "started": { "description": "Optional start time in ISO format. If not provided, the current time will be used. Example: '2023-08-01T12:00:00.000+0000'", "type": "string" }, "time_spent": { "description": "Time spent in Jira format. Examples: '1h 30m' (1 hour and 30 minutes), '1d' (1 day), '30m' (30 minutes), '4h' (4 hours)", "type": "string" } }, "required": [ "issue_key", "time_spent" ], "type": "object" }
ID: kc33m1kh5m