Skip to main content
Glama

Task Manager MCP Server

by blizzy78

update_task

Modify an existing task by adding dependencies, uncertainty areas, and definitions of done to ensure clarity and progress tracking in the Task Manager MCP Server.

Instructions

A tool to update an existing task. Can optionally provide a list of additional dependencies, uncertainty areas, and definitions of done.

Input Schema

NameRequiredDescriptionDefault
newDefinitionsOfDoneNoA detailed list of additional criteria that must be met for this task to be considered complete.
newDependsOnTaskIDsYesA list of additional task identifiers this task depends on.
newUncertaintyAreasYesA detailed list of additional areas where there is uncertainty about this task's requirements or execution. May be empty. Ensure list is ordered by priority.
taskIDYesThe identifier of this task.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "newDefinitionsOfDone": { "description": "A detailed list of additional criteria that must be met for this task to be considered complete.", "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" }, "newDependsOnTaskIDs": { "description": "A list of additional task identifiers this task depends on.", "items": { "$ref": "#/properties/taskID" }, "type": "array" }, "newUncertaintyAreas": { "description": "A detailed list of additional areas where there is uncertainty about this task's requirements or execution. May be empty. Ensure list is ordered by priority.", "items": { "additionalProperties": false, "properties": { "description": { "description": "A description of this uncertainty area.", "minLength": 1, "type": "string" }, "title": { "description": "A concise title for this uncertainty area.", "minLength": 1, "type": "string" } }, "required": [ "title", "description" ], "type": "object" }, "type": "array" }, "taskID": { "description": "The identifier of this task.", "minLength": 1, "type": "string" } }, "required": [ "taskID", "newDependsOnTaskIDs", "newUncertaintyAreas" ], "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