Skip to main content
Glama
andy-qingcai

MHO98 MCP Server

by andy-qingcai

configure_navigate

Configure time or search navigation for waveform review: set mode, speed, playback, and jump points; send stop first when the instrument rejects mode changes while running.

Instructions

Navigation (time or search navigation) for waveform review.

mode: TIME|SEARch per the manual (FRAMe is kept as an undocumented alias observed on firmware 00.01.00); time_speed: HIGH|NORMal|LOW (a raw number is still passed through for compatibility); frame_speed: playback speed for the undocumented FRAMe mode; time_play: start/stop playing in time navigation mode; goto: TIME|SEARch combined with STARt|END|NEXT|BACK, e.g. 'TIME:STARt', 'time_next' or 'search_end', to jump within the navigation mode. The instrument rejects mode changes while running; set stop_first=True to send :STOP first (FRAMe mode additionally requires recorded frames).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gotoNo
modeNo
enableNo
time_playNo
stop_firstNo
time_speedNo
frame_speedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does so well: it discloses the runtime rejection of mode changes, the stop_first workaround sending :STOP, the FRAMe requirement of recorded frames, and that FRAMe is an undocumented firmware-observed alias. It omits any statement about side effects on acquisition state or reversibility, but the operational behavior is unusually well disclosed.

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?

Per-parameter structure with the purpose front-loaded in the first sentence makes it scannable, and every line carries information. Parenthetical asides about firmware versions and compatibility are useful but slightly bloat the lines.

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?

An output schema exists, so return values need not be explained, and the description covers six of seven parameters plus the key runtime constraint. The undefined 'enable' parameter and the unaddressed relationship to navigate_to_event are the remaining holes in an otherwise complete definition.

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% and all seven parameters are bare, so the description must compensate; it documents mode, time_speed (with the raw-number passthrough), frame_speed, time_play, goto (with accepted value formats like 'TIME:STARt' and 'time_next'), and stop_first. Only 'enable' is left undefined, which is a modest gap in an otherwise strong mapping.

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 description opens with a concrete verb-plus-resource statement ('Navigation (time or search navigation) for waveform review') and enumerates the specific settings it controls. It is clearly distinguishable from read-side siblings like get_navigate_config, but it never acknowledges the likely overlap with navigate_to_event, which also performs navigation jumps.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It supplies one real prerequisite rule — the instrument rejects mode changes while running, so set stop_first=True (and FRAMe needs recorded frames) — which is genuinely actionable. However, it gives no guidance on when to use this versus navigate_to_event, configure_search, or get_navigate_config, leaving the agent to infer the boundary.

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