MCP Task Manager Server

showTask

Retrieve detailed information about a specific task, including its dependencies and subtasks, by providing the project ID and task ID. Integrates with the MCP Task Manager Server for structured project tracking.

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

NameRequiredDescriptionDefault
project_idYesThe unique identifier (UUID) of the project the task belongs to.
task_idYesThe 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" }

You must be authenticated.

Other Tools from MCP Task Manager Server

Related Tools

ID: iidipqwk2z