reset
Restart a MicroPython board to re-run boot.py and main.py, applying code changes or clearing system state.
Instructions
Soft-reset the board (boot.py then main.py run again).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Restart a MicroPython board to re-run boot.py and main.py, applying code changes or clearing system state.
Soft-reset the board (boot.py then main.py run again).
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It is transparent about the core effect: the board reruns boot.py and then main.py. It does not mention whether files are preserved or what the return/output looks like, but the core behavior is clearly disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short sentence with the key behavior front-loaded and a parenthetical that removes ambiguity. No filler or redundant content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter utility that simply restarts execution, the description contains everything an agent needs to understand what will happen. No output schema is expected, and the behavior is fully described in context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description does not need to explain any parameter meaning, and the empty schema matches the tool's simple invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific action ('soft-reset') and the exact resource ('the board'), with a clarifying parenthetical about what happens (boot.py then main.py run again). It clearly distinguishes reset from siblings like interrupt, start, and run_file by defining its behavior.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The intended use is implied: call this when you want to restart the board's Python execution. However, it does not explicitly state when to use reset versus alternatives like start or interrupt, nor does it mention any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.