Redmine MCP Server

update_time_entry

Update an existing time record. Modify hours, activity and comments. Cannot change project after creation. Available since Redmine 1.1

Input Schema

NameRequiredDescriptionDefault
activity_idNoNew activity type ID
commentsNoNew comments up to 255 characters
hoursNoNew number of hours. Can use decimals
idYesID of time record to update
issue_idNoChange linked issue ID
spent_onNoNew date in YYYY-MM-DD format

Input Schema (JSON Schema)

{ "properties": { "activity_id": { "description": "New activity type ID", "type": "number" }, "comments": { "description": "New comments up to 255 characters", "maxLength": 255, "type": "string" }, "hours": { "description": "New number of hours. Can use decimals", "exclusiveMinimum": true, "minimum": 0, "type": "number" }, "id": { "description": "ID of time record to update", "type": "number" }, "issue_id": { "description": "Change linked issue ID", "type": "number" }, "spent_on": { "description": "New date in YYYY-MM-DD format", "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" } }, "required": [ "id" ], "type": "object" }