Skip to main content
Glama

Task Manager MCP Server

by blizzy78

transition_task_status

Update task status based on valid transitions, ensuring dependencies are met and providing required details for completion. Ensures tasks progress systematically within the Task Manager MCP Server.

Instructions

A tool to transition the status of a task. Valid task status transitions are:

  • not-started -> in-progress (before starting task)
  • in-progress -> complete (if task is done)
  • complete -> in-progress (if task needs rework) All tasks this task depends on must be 'complete' before this task can be 'in-progress'. outcomeDetails and verificationEvidence must be provided when transitioning this task to 'complete'.

Input Schema

NameRequiredDescriptionDefault
newStatusYesThe new status of this task.
outcomeDetailsNoA detailed list of outcomes of this task. Must be provided if newStatus is 'complete'.
taskIDYesThe identifier of this task.
verificationEvidenceNoA list of verification evidence for task completion. Must be provided if newStatus is 'complete'.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "newStatus": { "description": "The new status of this task.", "enum": [ "not-started", "in-progress", "complete" ], "type": "string" }, "outcomeDetails": { "description": "A detailed list of outcomes of this task. Must be provided if newStatus is 'complete'.", "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" }, "taskID": { "description": "The identifier of this task.", "minLength": 1, "type": "string" }, "verificationEvidence": { "description": "A list of verification evidence for task completion. Must be provided if newStatus is 'complete'.", "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } }, "required": [ "taskID", "newStatus" ], "type": "object" }

Other Tools from Task Manager MCP Server

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/blizzy78/mcp-task-manager'

If you have feedback or need assistance with the MCP directory API, please join our Discord server