get_task_details
Retrieve detailed information about a specific task by its ID using the MCP Orchestrator Server, enabling efficient task tracking and management.
Instructions
Get details of a specific task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | ID of the task to get details for |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "ID of the task to get details for",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}