MCP Atlassian

jira_add_worklog

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')
original_estimateNoOptional original estimate in Jira format (e.g., '1h 30m', '1d'). This will update the original estimate for the issue.
remaining_estimateNoOptional remaining estimate in Jira format (e.g., '1h', '30m'). This will update the remaining estimate for the issue.
startedNoOptional start time in ISO format (e.g. '2023-08-01T12:00:00.000+0000'). If not provided, current time will be used.
time_spentYesTime spent in Jira format (e.g., '1h 30m', '1d', '30m')

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" }, "original_estimate": { "description": "Optional original estimate in Jira format (e.g., '1h 30m', '1d'). This will update the original estimate for the issue.", "type": "string" }, "remaining_estimate": { "description": "Optional remaining estimate in Jira format (e.g., '1h', '30m'). This will update the remaining estimate for the issue.", "type": "string" }, "started": { "description": "Optional start time in ISO format (e.g. '2023-08-01T12:00:00.000+0000'). If not provided, current time will be used.", "type": "string" }, "time_spent": { "description": "Time spent in Jira format (e.g., '1h 30m', '1d', '30m')", "type": "string" } }, "required": [ "issue_key", "time_spent" ], "type": "object" }