Skip to main content
Glama
andy-qingcai

MHO98 MCP Server

by andy-qingcai

set_display

Configure oscilloscope display settings such as grid, persistence, brightness, rulers, color grade, and waveform hold; clear the screen when needed.

Instructions

Display settings.

type: DOTS|VECTors (the manual documents VECTors for this model) persistence: MIN|0.1|0.2|0.5|1|2|5|10|INFinite seconds ('1S'/'1.0' are normalized to plain seconds — the firmware rejects suffixed forms) waveform_brightness: 1..100 (percent) grid_brightness: 0..100; cursor_brightness: 0..100 grid: FULL|HALF|NONE ('OFF' accepted as an alias of NONE) clear: clear all waveforms from the screen rulers: show the scale rulers track_ruler: move the scale ruler to track the waveform coordinate color_grade: color grade display (acquisition-probability coloring) waveform_hold: freeze the displayed waveform

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gridNo
typeNo
clearNo
rulersNo
color_gradeNo
persistenceNo
track_rulerNo
waveform_holdNo
grid_brightnessNo
cursor_brightnessNo
waveform_brightnessNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does add real behavioral detail: accepted value sets, the OFF-as-NONE alias, and the normalization rule that suffixed durations are rejected by firmware. However it omits whether settings persist across reboot, whether this is a read-modify-write, and any error behavior for out-of-range values.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

It is a compact enumerated list where each line earns its place by giving a value domain or a behavioral caveat. The one-word 'Display settings.' opener is a bit sparse and the multi-field braces are dense, but 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?

Return values are covered by the output schema, and all parameters are explained, so the description is nearly complete. The remaining gap is operational context (persistence across reboots, interaction with save_setup) that an agent might want before mutating display state.

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

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, yet the description documents all 11 parameters with concrete value domains (DOTS|VECTors, MIN..INFinite, 1..100 ranges, FULL|HALF|NONE) and clarifies that the display-side parameters are boolean toggles. This fully compensates for the schema gap and is exactly what an agent needs to invoke correctly.

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?

The header 'Display settings' plus the enumerated parameters make it clear this tool configures the oscilloscope's display (grid, persistence, brightness, rulers, waveform hold). It doesn't name its natural sibling get_display, so sibling differentiation is only implicit via the read/write naming convention.

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?

There is no statement of when to reach for this tool versus get_display, set_cursor, or set_timebase, nor any preconditions or exclusions. Usage must be inferred entirely from the parameter list.

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

Deploy Server

Other Tools