update_ticket
Modify ticket details such as status, priority, or description on the mcptix server to track and manage project tasks efficiently.
Instructions
Update an existing ticket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
complexity_metadata | No | Complexity metrics | |
description | No | Ticket description | |
id | Yes | Ticket ID | |
priority | No | Ticket priority | |
status | No | Ticket status | |
title | No | Ticket title |
Input Schema (JSON Schema)
{
"properties": {
"complexity_metadata": {
"description": "Complexity metrics",
"properties": {
"blockers_encountered": {
"type": "number"
},
"cascade_impact_zones": {
"type": "number"
},
"cie_score": {
"type": "number"
},
"coordination_touchpoints": {
"type": "number"
},
"dependencies": {
"type": "number"
},
"edge_cases": {
"type": "number"
},
"files_touched": {
"type": "number"
},
"loc_added": {
"type": "number"
},
"loc_modified": {
"type": "number"
},
"mocking_complexity": {
"type": "number"
},
"modules_crossed": {
"type": "number"
},
"review_rounds": {
"type": "number"
},
"shared_state_touches": {
"type": "number"
},
"stack_layers_involved": {
"type": "number"
},
"subjectivity_rating": {
"type": "number"
},
"test_cases_written": {
"type": "number"
}
},
"type": "object"
},
"description": {
"description": "Ticket description",
"type": "string"
},
"id": {
"description": "Ticket ID",
"type": "string"
},
"priority": {
"description": "Ticket priority",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"status": {
"description": "Ticket status",
"enum": [
"backlog",
"up-next",
"in-progress",
"in-review",
"completed"
],
"type": "string"
},
"title": {
"description": "Ticket title",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}