get_task_by_id
Retrieve detailed information for a specific task using its unique ID to manage and organize tasks efficiently within the DeltaTask MCP Server system.
Instructions
Get details for a specific task by ID.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| task_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "task_id": {
      "title": "Task Id",
      "type": "string"
    }
  },
  "required": [
    "task_id"
  ],
  "title": "get_task_by_idArguments",
  "type": "object"
}