taskDelete
Remove a specific task by its ID using the delete function on the MCP server. Streamline task management by eliminating unnecessary or completed tasks.
Instructions
刪除指定ID的任務
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}