Skip to main content
Glama

append_to_note

Add text to the end of an existing note without overwriting existing content. Safely log progress updates, new findings, or extra sections.

Instructions

Append content to the end of an existing note.

Safer than update_note — existing text is never lost. Use for adding progress updates, new findings, or extra sections.

Args: path: Relative path from vault root, e.g. '10-projects/my-project.md' content: Text to append (added after a blank line at end of file)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
contentYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It discloses key append semantics: existing text is never lost, and content is added after a blank line at the end of the file. It does not cover permissions, error cases, or atomicity, which would be needed for a 5.

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 front-loaded with the tool's purpose, followed by safety and usage guidance, and then a compact Args section. Every sentence earns its place with no redundancy.

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's low complexity, no annotations, and the presence of an output schema, the description covers what an agent needs: purpose, usage, safety, and parameter details. It omits only minor context like permissions or failure modes, which is acceptable but not perfect.

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?

Schema description coverage is 0%, so the description must compensate. It documents both parameters well: path is explained as a relative path from the vault root with a concrete example, and content is explained as text appended after a blank line at the end of the file, adding behavior beyond the bare schema types.

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 and resource: 'Append content to the end of an existing note.' It also distinguishes this tool from the sibling update_note by noting it is safer because existing text is never lost, allowing an agent to select correctly without checking schemas.

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?

It gives clear usage context ('Use for adding progress updates, new findings, or extra sections') and names the alternative update_note as a less safe option. It does not explicitly say when not to use it, but the alternative and conditions are strongly implied.

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