Skip to main content
Glama
kanbanzone

Kanban Zone MCP Server

Official
by kanbanzone

Update a task

kanbanzone_update_task
Idempotent

Update task fields like status, due date, or assignee to modify task details without affecting other attributes.

Instructions

Update fields on an existing task. Only included fields are changed.

Args:

  • id (string, required): task ObjectId.

  • description (string, optional)

  • completed (boolean, optional)

  • completedOn (string, optional): ISO date — only honoured when completed=true.

  • dueAt (string, optional): ISO date.

  • owner (string, optional): account ObjectId or email.

  • position (number, optional, ≥0)

Examples:

  • "Mark task 670... as complete"

  • "Reassign task 670... to alice@example.com"

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
descriptionNo
completedNo
completedOnNo
dueAtNo
ownerNo
positionNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate idempotentHint=true and destructiveHint=false, which the description reinforces by stating only included fields change. It additionally discloses behavioral constraints like completedOn only honoured when completed=true, adding value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is highly concise: a single sentence stating purpose, a structured list of parameters with brief explanations, and two clear examples. Every sentence is efficient and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 7 parameters and no output schema, the description covers all inputs thoroughly with examples. However, it lacks information about the return value (e.g., does it return the updated task?), which would enhance completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Since schema description coverage is 0%, the description's Args list provides essential meaning for each parameter, including constraints (e.g., completedOn conditional, position ≥0) and types (ObjectId, email, ISO date), fully compensating for the schema gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Update') and resource ('existing task'), with the specific nuance that only included fields are changed (partial update). This distinguishes it from sibling tools like move_task or create_task.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides examples of typical use cases (mark complete, reassign) but does not explicitly state when to use this tool over siblings like update_card, update_checklist, etc., nor does it provide exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/kanbanzone/kanban-zone-mcp-server'

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