Skip to main content
Glama

write

Create or overwrite text files on MicroPython boards, automatically generating parent folders. Enables direct saving of scripts and data to the device.

Instructions

Write a text file on the board (parent folders are created).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
contentYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. It does disclose one non-obvious behavior, that parent folders are created automatically, but it does not state whether an existing file is overwritten, what errors can occur, or what the operation returns.

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?

A single front-loaded sentence with no filler; the main action comes first and the important side effect is briefly added in parentheses. Every word earns its place.

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?

For a mutation tool with no annotations and no output schema, the description is thin: it omits overwrite semantics, path format assumptions, and any indication of return or error behavior. The parent-folder note helps but does not make the definition complete.

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 0% and the description does not explicitly define path/content, but 'text file' implies content is text and the parent-folder note adds meaning to path. This marginal compensation is enough for a very simple two-parameter schema.

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 action and resource: 'Write a text file on the board'. It is easily distinguished from sibling tools like read, ls, and rm, and the parenthetical parent-folder behavior adds useful scope.

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 is given about when to choose write over alternatives, nor are any exclusions or prerequisites stated. The description only says what the tool does; when to use it is left entirely to inference.

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