post_worklog
Log work hours in JIRA Tempo by creating new time entries with issue keys, hours worked, dates, and optional descriptions for accurate time tracking.
Instructions
Create a new worklog entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billable | No | Whether the time is billable (default: true) | |
description | No | Work description (optional) | |
endDate | No | End date in YYYY-MM-DD format (optional, defaults to startDate) | |
hours | Yes | Hours worked (decimal) | |
issueKey | Yes | JIRA issue key (e.g., PROJ-1234) | |
startDate | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"billable": {
"description": "Whether the time is billable (default: true)",
"type": "boolean"
},
"description": {
"description": "Work description (optional)",
"type": "string"
},
"endDate": {
"description": "End date in YYYY-MM-DD format (optional, defaults to startDate)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"hours": {
"description": "Hours worked (decimal)",
"maximum": 24,
"minimum": 0.1,
"type": "number"
},
"issueKey": {
"description": "JIRA issue key (e.g., PROJ-1234)",
"type": "string"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"required": [
"issueKey",
"hours",
"startDate"
],
"type": "object"
}