Skip to main content
Glama

Task API Server

by milkosten

updateTask

Modify task details such as category, priority, status, or description using the task ID. Ideal for updating and managing tasks in the Task API Server.

Input Schema

NameRequiredDescriptionDefault
categoryNoNew task category (if you want to change it)
priorityNoNew task priority (if you want to change it)
statusNoNew task status (if you want to change it)
taskNoNew task description/title (if you want to change it)
taskIdYesThe unique ID of the task to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "category": { "description": "New task category (if you want to change it)", "type": "string" }, "priority": { "description": "New task priority (if you want to change it)", "enum": [ "low", "medium", "high" ], "type": "string" }, "status": { "description": "New task status (if you want to change it)", "enum": [ "not_started", "started", "done" ], "type": "string" }, "task": { "description": "New task description/title (if you want to change it)", "type": "string" }, "taskId": { "description": "The unique ID of the task to update", "exclusiveMinimum": 0, "type": "integer" } }, "required": [ "taskId" ], "type": "object" }

You must be authenticated.

Other Tools from Task API 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/milkosten/task-mcp-server'

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