Skip to main content
Glama
PhononX

Carbon Voice

by PhononX

update_action_item

Destructive

Update an action item's title, notes, assignee, or due date by sending only the fields that need changing. Unchanged fields remain as-is, enabling precise edits without overwriting other data.

Instructions

Change an action item's title, notes, assignee, or due date. USE WHEN: Editing item content. Send only the fields you want changed — omitted fields are left as they are. USE INSTEAD: set_action_item_status to move an item between todo / done / suggested; status is not editable here. FIRST: id comes from list_my_action_items (field results[].id) — call it first if you don't have one. EXAMPLE: {"id":"ai-abc","due_date":"2026-10-01"} RETURNS: The updated action item, same shape as get_action_item.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
titleNoNew title. Omit to leave unchanged.
due_dateNoDue date as an ISO 8601 timestamp.
notes_textNoNew notes. Omit to leave unchanged.
assigned_toNoAssignee user ID, from `search_users`. Not a name.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.10.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already indicate mutation (readOnlyHint=false, destructiveHint=true). The description adds crucial partial-update semantics (omitted fields are left unchanged), the return shape (same as `get_action_item`), and how to source the id. This goes beyond the annotations and is not contradictory.

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 well-structured with clear section labels (USE WHEN, USE INSTEAD, FIRST, EXAMPLE, RETURNS). Each section earns its place, the main purpose is front-loaded, and there is no unnecessary repetition or fluff.

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

Completeness5/5

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

For a mutation tool with five parameters and no output schema, the description covers the purpose, usage context, prerequisites, partial-update behavior, and return format. It also names the sibling to avoid confusion. No critical information is missing for correct invocation.

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 80% (4 of 5 parameters have descriptions). The description reinforces the key rule that only fields to change need be sent, and the example clarifies the structure. It adds a general principle the schema does not fully articulate, elevating it above the baseline for high coverage.

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 states a specific verb ('Change'), the resource ('an action item'), and lists the mutable fields (title, notes, assignee, due date). It explicitly distinguishes this from the sibling `set_action_item_status`, making the tool's purpose unambiguous even without opening the schema.

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

Usage Guidelines5/5

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

Provides explicit 'USE WHEN' and 'USE INSTEAD' sections, clearly stating when to use this tool and when to use the alternative for status changes. It also instructs the agent to obtain the `id` from `list_my_action_items` first, a concrete prerequisite that prevents errors.

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