Skip to main content
Glama
SWITCHSCIENCE

mcp-micropython-bridge

micropython_delete_file

Delete a file from a MicroPython board by specifying its path, helping manage storage on ESP32, RP2040, and similar devices via MCP clients.

Instructions

MicroPython ボード上のファイルを削除する。

Args: path: 削除するファイルのパス (例: "/test.py")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
pathYes
errorYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are supplied, so the description carries the full disclosure burden. It never states that deletion is irreversible, what happens if the path does not exist, whether the board must be connected, or what error conditions exist — all important for a destructive operation.

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 lines: the action first, then the argument with an example. Every element earns its place and nothing is padded.

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?

An output schema exists, so return values need not be described. However, for a destructive tool with no annotations, the definition omits connection prerequisites and failure behavior, leaving it only minimally complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/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 for the lone parameter, and it does: it names the argument, identifies it as the file path, and gives a concrete example format ('/test.py'). That is genuine added meaning over the bare string 'Path' in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource ('delete a file on the MicroPython board'), which clearly separates it from directory-oriented siblings like micropython_remove_dir or micropython_rename_path. It does not explicitly name an alternative, but the action is unambiguous.

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 when-to-use context, no prerequisites (e.g. an active connection), and no pointer to alternatives such as micropython_remove_dir for directories. The agent must infer the correct circumstances entirely on its own.

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