delete_issue
Remove work items from CODING DevOps projects by specifying the issue code and project name using the delete_issue tool on the MCP server.
Instructions
删除工作项
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueCode | Yes | 事项编号 | |
projectName | Yes | 项目名称 |
Input Schema (JSON Schema)
{
"properties": {
"issueCode": {
"description": "事项编号",
"type": "number"
},
"projectName": {
"description": "项目名称",
"type": "string"
}
},
"required": [
"projectName",
"issueCode"
],
"type": "object"
}