Skip to main content
Glama

Append to note

append_to_note

Append text to an existing task or project note while preserving its current content.

Instructions

Append text to a task or project's note without overwriting existing content

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoThe ID of the task or project. Canonical field; legacy alias 'object_id' also accepted.
textYesThe text to append to the note
itemTypeNoWhether to append to a task or project note. Canonical field; legacy alias 'object_type' also accepted.
object_idNo[DEPRECATED] Alias for id. Prefer id.
object_typeNo[DEPRECATED] Alias for itemType. Prefer itemType.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
toolYes
successYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already indicate not read-only and not destructive; the description adds the key behavioral detail that existing content is preserved. However, it doesn't disclose behavior for missing notes, permission requirements, or side effects. With annotations covering the safety profile, this is adequate but not rich.

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

Conciseness4/5

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

A single sentence with no filler; the verb and direct object are front-loaded. Could arguably be 5, but it lacks any structured guidance for the deprecated aliases or optional parameters, so 4.

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

Completeness2/5

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

The schema leaves id and itemType optional, yet the description doesn't explain what happens when they are omitted or how the target is resolved. For a mutation tool with multiple parameters and deprecated aliases, the description alone is insufficient for correct invocation.

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

Parameters3/5

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

Schema coverage is 100%, so parameters are documented. The description adds no extra meaning about the optionality of id/itemType or the deprecated aliases. At high schema coverage the baseline is 3; no additional value is provided.

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

Purpose4/5

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

States the specific operation (append) and resource (task or project note), and explicitly notes the non-destructive behavior ('without overwriting'), which distinguishes it from edit-type tools. It doesn't name sibling tools explicitly, so not a 5.

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

Usage Guidelines2/5

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

No guidance on when to use this vs alternatives like edit_item or batch_edit_items, no prerequisites (e.g., must supply id/itemType), and no exclusions. The one-sentence description implies 'use to append' but offers no decision support.

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