task_info
Retrieve detailed information about a task using its unique ID, enabling comprehensive tracking and management within the Task Manager MCP Server.
Instructions
A tool to retrieve full information about a task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskID | Yes | The identifier of a task. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskID": {
"description": "The identifier of a task.",
"minLength": 1,
"type": "string"
}
},
"required": [
"taskID"
],
"type": "object"
}