delete_task
Remove a task from the Taiga project management platform by specifying its task ID, enabling streamlined task management through the Taiga MCP Bridge.
Instructions
Deletes a task by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "integer"
}
},
"required": [
"session_id",
"task_id"
],
"title": "delete_taskArguments",
"type": "object"
}