Skip to main content
Glama

pad_append

Append content to the end of a specified pad to extend shared session memory. Use an optional expected revision to prevent concurrent write conflicts.

Instructions

Append content to the end of a pad. Optional expected_revision guards against concurrent writes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pad_idYes
contentYes
project_idNoDifferent project override. Use ONLY when the user explicitly asks for another project by name; otherwise stay in the current scope, even when results are empty.
expected_revisionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pad_idYes
revisionYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations provided, the description bears the burden of behavioral disclosure. It communicates that the operation is non-destructive (append to end) and mentions a concurrency guard, which is valuable. However, it does not state what happens on revision mismatch, whether the pad must already exist, or what side effects occur beyond appending.

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 two short sentences with no filler. The primary action is front-loaded, and the expected_revision note earns its place by adding an important usage detail. This is appropriately sized for the tool's complexity.

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

Completeness3/5

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

For a simple append operation with an output schema, the description covers the core behavior and a key optional parameter. It misses important context like failure behavior on concurrent writes, whether a missing pad is created, and any permission requirements, which would be especially relevant since annotations are absent.

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?

Input schema coverage is low at 25%, but the description adds meaning for expected_revision by explaining its concurrency-guard purpose CST. project_id already has a detailed schema description, while pad_id and content are self-evident from their names and types. The description provides partial compensation but does not document every parameter's intended behavior.

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 clearly states the action ('Append content') and the resource ('to the end of a pad'), which unambiguously distinguishes it from sibling tools like pad_write or pad_edit. The specific append-only semantics make the tool's purpose immediately obvious.

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 core usage context is explicit: append to a pad when adding content to its end. The optional expected_revision parameter is given a clear purpose ('guards against concurrent writes'), telling the agent when to use it. It does not explicitly name alternatives or exclusions, but the append operation is distinct enough to serve as clear usage guidance.

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