Skip to main content
Glama

pulse_line

Drive DTR or RTS to a specified level for milliseconds to reset an Arduino, enter bootloader, or key radio PTT, then restore the line automatically.

Instructions

Drive DTR or RTS to level for ms milliseconds, then restore it.

Uses: reset an Arduino (DTR, 100 ms), enter a bootloader, or key a rig's PTT for a timed transmission (RTS or DTR per the interface's wiring). The line is always restored, even if the wait is interrupted. Refused in read-only mode.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
msNo
lineYes
levelNo
connectionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.2

TDQS

A4.4/5.0
Behavior4/5

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

There are no annotations, so the description must disclose behavior on its own. It explicitly states that the line is always restored even if interrupted and that the tool is refused in read-only mode, which are important side-effect and safety details. It does not cover connection-related behavior, but the core behavioral contract is clear.

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 compact and front-loaded: the core behavior appears in the first sentence, followed by practical uses and important caveats. Every sentence adds value and there is no filler.

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

Completeness4/5

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

With an output schema present, the lack of return-value detail is acceptable. The main gap is the undocumented connection parameter, but the description otherwise provides enough operational context for an agent to select and invoke the tool correctly.

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%, yet the description explains line, level, and ms in context: DTR/RTS choices, boolean level, and millisecond duration. The connection parameter is not explained, so the parameter semantics are strong but incomplete.

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 first sentence states a precise operation: drive DTR or RTS to a level for a specified duration, then restore it. This clearly distinguishes pulse_line from siblings like set_lines or send_break, which involve sustained or different line manipulation.

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 Uses section gives concrete scenarios (Arduino reset, bootloader entry, PTT timing) and even suggests typical parameters such as DTR and 100 ms. It does not explicitly say when not to use the tool or name alternatives, so it stops 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.