Skip to main content
Glama
rodriabregu

safe-apple-notes-mcp

by rodriabregu

Append to note

append_to_note

Append plain text to an existing Apple Note without altering its current content. Get a clear error if the note is password protected.

Instructions

Append plain text to an existing note's body. Never replaces existing content. Fails with a clear error if the note is password protected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesId of the note to append to.
textYesPlain text to append. Each line becomes one paragraph.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate non-read-only and non-idempotent behavior. The description adds valuable context beyond the annotations: that existing content is preserved and that password-protected notes cause a clear error. It does not contradict the annotations.

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?

Two sentences with no filler. The core behavior is front-loaded, and the critical caveat ('Never replaces existing content') appears immediately after the verb phrase.

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 simple two-parameter append operation, the description covers the core behavior, the non-destructive guarantee, and the main failure edge case. No output schema exists, but the agent has enough to call this correctly.

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 100%, so the schema already documents both id and text. The description does not add meaning beyond what the schema provides, placing it at the baseline of 3.

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 ('Append'), a resource ('existing note's body'), and a scope ('plain text') in the first sentence. It also distinguishes itself from sibling update_note by explicitly saying 'Never replaces existing content.'

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 when to use the tool: to add text without replacing, which contrasts with update_note. Password-protected failure is also stated. However, it does not explicitly name alternatives or give a concrete 'use X instead' routing, so it falls just short of a 5.

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