getTask
Retrieve task details using a specific task ID for efficient task management and orchestration within the task-orchestrator-mcp server.
Instructions
Get a task by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Task ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Task ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}