Skip to main content
Glama

append_to_note

Add text to an existing note without resending its full content, ideal for journals, logs, and running lists. Appends at the end or chosen section with a blank line separator.

Instructions

Add text to a note without resending the rest — prefer it over update_note for journals, logs and running lists. A blank line separates your text from what was there. Re-embeds in the background like any content change.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
atNoDefault section_end if section given, else note_end. note_start is after the H1/intro, before its first nested heading — not offset 0.
idNo
titleNoAlternative to id; resolved like get_note
contentYes
sectionNoTarget this section (heading text or slug) instead of the whole note

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.0

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries full disclosure burden and meets it: it explains the no-resend behavior, the inserted blank-line separator, and the background re-embed side effect. These are concrete behavioral traits beyond what the schema states.

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?

Three tight sentences cover purpose, preference over an alternative, formatting behavior, and side effects. No repetition of schema details and no filler.

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?

The description plus schema covers the main decision (append vs update), target resolution (id/title/section), placement semantics (at), and the side-effect profile. It does not describe return values or error conditions, but for a no-output-schema append operation that gap is minor. Overall it is sufficient 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 description coverage is 60% and the tool description adds no direct parameter semantics beyond referring generally to 'your text'. The schema already documents at, title, section and content constraints, so the description provides no extra parameter-level value. Baseline 3 is appropriate given partial schema 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 opens with 'Add text to a note without resending the rest,' a specific verb-resource pair, and explicitly contrasts it with update_note. This makes the tool's scope unambiguous and distinguishes it from sibling mutation tools.

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?

The description explicitly says to prefer this tool over update_note for journals, logs and running lists, naming both the alternative and the usage context. This is direct when-to-use guidance the agent does not have to infer.

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