get_task
Retrieve detailed information about a specific Taiga task using its ID, enabling AI systems to manage and integrate project data via the Taiga MCP Bridge.
Instructions
Gets detailed information about a specific 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": "get_taskArguments",
"type": "object"
}