Skip to main content
Glama
kanjidoc
by kanjidoc

missive_update_task

Idempotent

Update a Missive task's title, description, state, assignees, team, or due date by providing only the fields to change.

Instructions

Updates a single task's attributes (title, description, state, assignees, team, due date). Only the fields you include are changed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamNoNew team ID for the task.
stateNoNew task state: 'todo', 'in_progress', or 'closed'.
titleNoNew task title (max 1000 characters).
due_atNoNew due date as a Unix timestamp.
task_idYesID of the task to update.
assigneesNoNew array of assignee user IDs (replaces the current assignees).
descriptionNoNew task description, plain text (max 10000 characters).
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 aligns with by describing a partial update (non-destructive). The description adds the important behavioral detail that only included fields are changed, which is not in the annotations. No contradictions.

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 exceptionally concise: two sentences, zero wasted words. The first sentence states purpose and lists fields, the second clarifies the partial update behavior. It is well front-loaded and easy to scan.

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?

Given the tool has 7 parameters (1 required) and no output schema, the description adequately covers purpose and behavioral nuance. However, it does not mention what the tool returns (e.g., updated task object) or error scenarios (e.g., if task_id not found). This is a minor gap for a mutation tool, but annotations partially compensate.

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

Parameters4/5

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

Schema coverage is 100% with descriptions for each parameter. The description adds value by clarifying the partial update behavior ('Only the fields you include are changed'), which is not evident from individual parameter descriptions. This is a key semantic that helps the agent understand the tool's merge-like behavior.

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 'Updates' and the resource 'a single task's attributes', listing specific fields. It distinguishes from sibling tools like missive_create_task (create) and missive_get_task (read) by focusing on update semantics.

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

Usage Guidelines4/5

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

The description implies usage for updating an existing task, but does not explicitly specify when not to use it or suggest alternative tools like missive_get_task for reading or missive_list_tasks for listing. However, the partial update hint ('Only the fields you include are changed') provides clear context for typical usage.

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/kanjidoc/missive-mcp'

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