MCP Task Manager Server_showTask
Retrieve detailed information about a specific task, including dependencies and subtasks, by providing the project ID and task ID. Returns a comprehensive task object if found.
Instructions
Retrieves the full details of a single, specific task, including its dependencies and direct subtasks. Requires the project ID and the task ID. Returns a task object containing all details if found.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The unique identifier (UUID) of the project the task belongs to. | |
task_id | Yes | The unique identifier of the task to retrieve details for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_id": {
"description": "The unique identifier (UUID) of the project the task belongs to.",
"format": "uuid",
"type": "string"
},
"task_id": {
"description": "The unique identifier of the task to retrieve details for.",
"minLength": 1,
"type": "string"
}
},
"required": [
"project_id",
"task_id"
],
"type": "object"
}