open_task_details
Retrieve detailed information about a specific task using its unique taskId in the MCP TaskManager server. Use this tool to inspect task status, progress, and other relevant details during its lifecycle.
Instructions
Get details of a specific task by 'taskId'. This is for inspecting task information at any point.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}